Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-33186 (GCVE-0-2026-33186)
Vulnerability from cvelistv5 – Published: 2026-03-20 22:23 – Updated: 2026-03-24 18:09- CWE-285 - Improper Authorization
| URL | Tags |
|---|---|
| https://github.com/grpc/grpc-go/security/advisori… | x_refsource_CONFIRM |
{
"containers": {
"adp": [
{
"metrics": [
{
"other": {
"content": {
"id": "CVE-2026-33186",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "yes"
},
{
"Technical Impact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-03-24T18:08:38.989284Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"providerMetadata": {
"dateUpdated": "2026-03-24T18:09:13.422Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
}
],
"cna": {
"affected": [
{
"product": "grpc-go",
"vendor": "grpc",
"versions": [
{
"status": "affected",
"version": "\u003c 1.79.3"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "gRPC-Go is the Go language implementation of gRPC. Versions prior to 1.79.3 have an authorization bypass resulting from improper input validation of the HTTP/2 `:path` pseudo-header. The gRPC-Go server was too lenient in its routing logic, accepting requests where the `:path` omitted the mandatory leading slash (e.g., `Service/Method` instead of `/Service/Method`). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official `grpc/authz` package) evaluated the raw, non-canonical path string. Consequently, \"deny\" rules defined using canonical paths (starting with `/`) failed to match the incoming request, allowing it to bypass the policy if a fallback \"allow\" rule was present. This affects gRPC-Go servers that use path-based authorization interceptors, such as the official RBAC implementation in `google.golang.org/grpc/authz` or custom interceptors relying on `info.FullMethod` or `grpc.Method(ctx)`; AND that have a security policy contains specific \"deny\" rules for canonical paths but allows other requests by default (a fallback \"allow\" rule). The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed `:path` headers directly to the gRPC server. The fix in version 1.79.3 ensures that any request with a `:path` that does not start with a leading slash is immediately rejected with a `codes.Unimplemented` error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string. While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods: Use a validating interceptor (recommended mitigation); infrastructure-level normalization; and/or policy hardening."
}
],
"metrics": [
{
"cvssV3_1": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-285",
"description": "CWE-285: Improper Authorization",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-03-20T22:23:32.147Z",
"orgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"shortName": "GitHub_M"
},
"references": [
{
"name": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"tags": [
"x_refsource_CONFIRM"
],
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"source": {
"advisory": "GHSA-p77j-4mvh-x3m3",
"discovery": "UNKNOWN"
},
"title": "gRPC-Go has an authorization bypass via missing leading slash in :path"
}
},
"cveMetadata": {
"assignerOrgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"assignerShortName": "GitHub_M",
"cveId": "CVE-2026-33186",
"datePublished": "2026-03-20T22:23:32.147Z",
"dateReserved": "2026-03-17T22:16:36.720Z",
"dateUpdated": "2026-03-24T18:09:13.422Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2026-33186",
"date": "2026-06-29",
"epss": "0.00522",
"percentile": "0.40354"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2026-33186\",\"sourceIdentifier\":\"security-advisories@github.com\",\"published\":\"2026-03-20T23:16:45.180\",\"lastModified\":\"2026-06-17T10:37:05.900\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"gRPC-Go is the Go language implementation of gRPC. Versions prior to 1.79.3 have an authorization bypass resulting from improper input validation of the HTTP/2 `:path` pseudo-header. The gRPC-Go server was too lenient in its routing logic, accepting requests where the `:path` omitted the mandatory leading slash (e.g., `Service/Method` instead of `/Service/Method`). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official `grpc/authz` package) evaluated the raw, non-canonical path string. Consequently, \\\"deny\\\" rules defined using canonical paths (starting with `/`) failed to match the incoming request, allowing it to bypass the policy if a fallback \\\"allow\\\" rule was present. This affects gRPC-Go servers that use path-based authorization interceptors, such as the official RBAC implementation in `google.golang.org/grpc/authz` or custom interceptors relying on `info.FullMethod` or `grpc.Method(ctx)`; AND that have a security policy contains specific \\\"deny\\\" rules for canonical paths but allows other requests by default (a fallback \\\"allow\\\" rule). The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed `:path` headers directly to the gRPC server. The fix in version 1.79.3 ensures that any request with a `:path` that does not start with a leading slash is immediately rejected with a `codes.Unimplemented` error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string. While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods: Use a validating interceptor (recommended mitigation); infrastructure-level normalization; and/or policy hardening.\"},{\"lang\":\"es\",\"value\":\"gRPC-Go es la implementaci\u00f3n en lenguaje Go de gRPC. Las versiones anteriores a la 1.79.3 tienen un bypass de autorizaci\u00f3n resultante de una validaci\u00f3n de entrada incorrecta del pseudo-encabezado HTTP/2 \u0027:path\u0027. El servidor gRPC-Go era demasiado indulgente en su l\u00f3gica de enrutamiento, aceptando solicitudes donde el \u0027:path\u0027 omit\u00eda la barra inicial obligatoria (por ejemplo, \u0027Service/Method\u0027 en lugar de \u0027/Service/Method\u0027). Si bien el servidor enrut\u00f3 con \u00e9xito estas solicitudes al gestor correcto, los interceptores de autorizaci\u00f3n (incluido el paquete oficial \u0027grpc/authz\u0027) evaluaron la cadena de ruta cruda y no can\u00f3nica. En consecuencia, las reglas de \u0027denegaci\u00f3n\u0027 definidas usando rutas can\u00f3nicas (que comienzan con \u0027/\u0027) no lograron coincidir con la solicitud entrante, permitiendo que bypassara la pol\u00edtica si una regla de \u0027permiso\u0027 de respaldo estaba presente. Esto afecta a los servidores gRPC-Go que utilizan interceptores de autorizaci\u00f3n basados en rutas, como la implementaci\u00f3n oficial de RBAC en \u0027google.golang.org/grpc/authz\u0027 o interceptores personalizados que dependen de \u0027info.FullMethod\u0027 o \u0027grpc.Method(ctx)\u0027; Y que tienen una pol\u00edtica de seguridad que contiene reglas de \u0027denegaci\u00f3n\u0027 espec\u00edficas para rutas can\u00f3nicas pero permite otras solicitudes por defecto (una regla de \u0027permiso\u0027 de respaldo). La vulnerabilidad es explotable por un atacante que puede enviar tramas HTTP/2 crudas con encabezados \u0027:path\u0027 malformados directamente al servidor gRPC. La correcci\u00f3n en la versi\u00f3n 1.79.3 asegura que cualquier solicitud con un \u0027:path\u0027 que no comience con una barra inicial sea inmediatamente rechazada con un error \u0027codes.Unimplemented\u0027, impidiendo que llegue a los interceptores de autorizaci\u00f3n o gestores con una cadena de ruta no can\u00f3nica. Si bien la actualizaci\u00f3n es la ruta m\u00e1s segura y recomendada, los usuarios pueden mitigar la vulnerabilidad utilizando uno de los siguientes m\u00e9todos: Usar un interceptor de validaci\u00f3n (mitigaci\u00f3n recomendada); normalizaci\u00f3n a nivel de infraestructura; y/o endurecimiento de pol\u00edticas.\"}],\"affected\":[{\"source\":\"security-advisories@github.com\",\"affectedData\":[{\"vendor\":\"grpc\",\"product\":\"grpc-go\",\"versions\":[{\"version\":\"\u003c 1.79.3\",\"status\":\"affected\"}]}]}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N\",\"baseScore\":9.1,\"baseSeverity\":\"CRITICAL\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"NONE\"},\"exploitabilityScore\":3.9,\"impactScore\":5.2}],\"ssvcV203\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"ssvcData\":{\"timestamp\":\"2026-03-24T18:08:38.989284Z\",\"id\":\"CVE-2026-33186\",\"options\":[{\"exploitation\":\"none\"},{\"automatable\":\"yes\"},{\"technicalImpact\":\"partial\"}],\"role\":\"CISA Coordinator\",\"version\":\"2.0.3\"}}]},\"weaknesses\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-285\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:grpc:grpc:*:*:*:*:*:go:*:*\",\"versionEndExcluding\":\"1.79.3\",\"matchCriteriaId\":\"D5AB3ED0-D11B-461E-B2B1-627D5CCEA236\"}]}]}],\"references\":[{\"url\":\"https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Mitigation\",\"Vendor Advisory\"]}]}}",
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2026-33186\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"yes\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2026-03-24T18:08:38.989284Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2026-03-24T18:09:03.096Z\"}}], \"cna\": {\"title\": \"gRPC-Go has an authorization bypass via missing leading slash in :path\", \"source\": {\"advisory\": \"GHSA-p77j-4mvh-x3m3\", \"discovery\": \"UNKNOWN\"}, \"metrics\": [{\"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 9.1, \"attackVector\": \"NETWORK\", \"baseSeverity\": \"CRITICAL\", \"vectorString\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N\", \"integrityImpact\": \"HIGH\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"LOW\", \"availabilityImpact\": \"NONE\", \"privilegesRequired\": \"NONE\", \"confidentialityImpact\": \"HIGH\"}}], \"affected\": [{\"vendor\": \"grpc\", \"product\": \"grpc-go\", \"versions\": [{\"status\": \"affected\", \"version\": \"\u003c 1.79.3\"}]}], \"references\": [{\"url\": \"https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3\", \"name\": \"https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3\", \"tags\": [\"x_refsource_CONFIRM\"]}], \"descriptions\": [{\"lang\": \"en\", \"value\": \"gRPC-Go is the Go language implementation of gRPC. Versions prior to 1.79.3 have an authorization bypass resulting from improper input validation of the HTTP/2 `:path` pseudo-header. The gRPC-Go server was too lenient in its routing logic, accepting requests where the `:path` omitted the mandatory leading slash (e.g., `Service/Method` instead of `/Service/Method`). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official `grpc/authz` package) evaluated the raw, non-canonical path string. Consequently, \\\"deny\\\" rules defined using canonical paths (starting with `/`) failed to match the incoming request, allowing it to bypass the policy if a fallback \\\"allow\\\" rule was present. This affects gRPC-Go servers that use path-based authorization interceptors, such as the official RBAC implementation in `google.golang.org/grpc/authz` or custom interceptors relying on `info.FullMethod` or `grpc.Method(ctx)`; AND that have a security policy contains specific \\\"deny\\\" rules for canonical paths but allows other requests by default (a fallback \\\"allow\\\" rule). The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed `:path` headers directly to the gRPC server. The fix in version 1.79.3 ensures that any request with a `:path` that does not start with a leading slash is immediately rejected with a `codes.Unimplemented` error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string. While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods: Use a validating interceptor (recommended mitigation); infrastructure-level normalization; and/or policy hardening.\"}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-285\", \"description\": \"CWE-285: Improper Authorization\"}]}], \"providerMetadata\": {\"orgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"shortName\": \"GitHub_M\", \"dateUpdated\": \"2026-03-20T22:23:32.147Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2026-33186\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2026-03-24T18:09:13.422Z\", \"dateReserved\": \"2026-03-17T22:16:36.720Z\", \"assignerOrgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"datePublished\": \"2026-03-20T22:23:32.147Z\", \"assignerShortName\": \"GitHub_M\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
RHSA-2026:24853
Vulnerability from csaf_redhat - Published: 2026-06-09 15:31 - Updated: 2026-06-29 19:34A flaw was found in Axios, a promise-based HTTP client. This vulnerability occurs because Axios does not correctly handle hostname normalization when evaluating NO_PROXY rules. An attacker can exploit this by crafting requests to loopback addresses (e.g., localhost. or [::1]) which bypass the NO_PROXY configuration and are routed through the configured proxy. This can lead to Server-Side Request Forgery (SSRF) vulnerabilities, enabling attackers to access sensitive internal or loopback services that should otherwise be protected.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
Workaround
|
A flaw was found in Red Hat Quay and mirror registry for Red Hat OpenShift. The log export feature in these products allows an authenticated user to specify an arbitrary callback URL. A backend process then makes server-side HTTP requests to this provided URL. This vulnerability, known as Server-Side Request Forgery (SSRF), could allow an attacker to send requests from the application's internal network, potentially leading to the disclosure of sensitive information.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
No description is available for this CVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
Workaround
|
A flaw was found in pyOpenSSL. The set_cookie_generate_callback callback function can be used to generate DTLS cookies. When the callback returns a cookie string or byte sequence longer than 256 bytes, a buffer overflow can be triggered due to a missing bounds checking before copying the data to a fixed-size buffer provided by the underlying OpenSSL library.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
Workaround
|
A flaw was found in Authlib, a Python library used for creating secure authentication and authorization systems. This vulnerability, known as JWK (JSON Web Key) Header Injection, affects how Authlib verifies digital signatures in JWS (JSON Web Signature) tokens. An attacker can exploit this by creating a specially crafted token that includes their own cryptographic key in the header. When the system attempts to verify this token without a predefined key, it mistakenly uses the attacker's key, allowing them to bypass authentication and gain unauthorized access.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
Workaround
|
A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a "slice bounds out of range panic", resulting in a Denial of Service (DoS) for the affected application.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
Workaround
|
A flaw was found in Red Hat Quay's container image upload process. An authenticated user with push access to any repository on the registry can interfere with image uploads in progress by other users, including those in repositories they do not have access to. This could allow the attacker to read, modify, or cancel another user's in-progress image upload.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
A flaw was found in Red Hat Quay's handling of resumable container image layer uploads. The upload process stores intermediate data in the database using a format that, if tampered with, could allow an attacker to execute arbitrary code on the Quay server.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
Workaround
|
A flaw was found in Forge (also called `node-forge`), a JavaScript implementation of Transport Layer Security. A remote attacker could exploit weaknesses in the RSASSA PKCS#1 v1.5 signature verification process. By crafting malicious signatures that include extra data within the ASN structure and do not meet padding requirements, an attacker can bypass signature validation. This allows for the creation of forged signatures that appear legitimate, potentially compromising the integrity and authenticity of communications.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
Workaround
|
A flaw was found in the cryptography library. This vulnerability occurs when a non-contiguous buffer is passed to certain application programming interfaces (APIs) that accept Python buffers, such as Hash.update(). A remote attacker could exploit this to cause a buffer overflow, potentially leading to a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
Workaround
|
A flaw was found in Pillow, a Python imaging library. This vulnerability allows a remote attacker to trigger a denial of service (DoS) by providing a specially crafted FITS image file. The library's failure to limit the amount of GZIP-compressed data during decoding can lead to unbounded memory consumption, causing the system to crash or experience severe performance issues.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
Workaround
|
A flaw was found in follow-redirects. When an HTTP request follows a cross-domain redirect (a redirection to a different domain), custom authentication headers, such as X-API-Key or X-Auth-Token, are not properly stripped. This allows these sensitive headers to be forwarded verbatim to the redirect target, potentially leading to the unintended disclosure of authentication information to an untrusted third party.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
A flaw was found in Axios, an HTTP client library. This vulnerability allows an attacker to exploit a prototype pollution issue if another part of the application has already polluted the Object.prototype. By doing so, the attacker can intercept and modify JSON responses or take control of the HTTP communication. This could lead to unauthorized access to sensitive information like user credentials and request details.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
A flaw was found in Axios, a software library for making network requests. A remote attacker can exploit a prototype pollution vulnerability to inject arbitrary HTTP headers into outgoing requests. This occurs when the application's core object definitions are manipulated, causing Axios to misinterpret data and include attacker-controlled headers in network communications. This could lead to unauthorized actions or data manipulation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
Workaround
|
A flaw was found in Axios, a promise-based HTTP client for browsers and Node.js. This vulnerability occurs because the `toFormData` function recursively processes nested objects without a depth limit. A remote attacker can exploit this by sending deeply nested request data, which causes the Node.js process to crash due to a RangeError, leading to a potential Denial of Service (DoS) if the process crashes.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
A flaw was found in Axios, a promise-based HTTP client. This vulnerability, a Prototype Pollution "Gadget" attack, allows an attacker to manipulate the `Object.prototype.validateStatus` property. By polluting this property, all HTTP error responses (such as 401, 403, or 500) are silently treated as successful responses. This can lead to a complete bypass of application-level authentication and error handling, potentially granting unauthorized access.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
A flaw was found in Axios, a promise-based HTTP client. An attacker who can control the destination address of an Axios request can exploit this vulnerability. By using specific internal network addresses (within the 127.0.0.0/8 range, excluding 127.0.0.1), the attacker can completely bypass the NO_PROXY protection, potentially leading to unauthorized access or information disclosure within the network. This issue is an incomplete fix for a previous vulnerability.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
A flaw was found in Axios, a widely used HTTP client. This vulnerability, known as a Prototype Pollution "Gadget" attack, allows a remote attacker to subtly alter JSON API responses. By manipulating a specific function, an attacker can selectively modify data within these responses. This could lead to significant security breaches, including unauthorized privilege escalation, fraudulent balance manipulation, or bypassing critical authorization checks.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat Quay 3.15.5 is now available with bug fixes.",
"title": "Topic"
},
{
"category": "general",
"text": "Quay 3.15.5",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:24853",
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-62718",
"url": "https://access.redhat.com/security/cve/CVE-2025-62718"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-2377",
"url": "https://access.redhat.com/security/cve/CVE-2026-2377"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-25679",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27459",
"url": "https://access.redhat.com/security/cve/CVE-2026-27459"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27962",
"url": "https://access.redhat.com/security/cve/CVE-2026-27962"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32280",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32282",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32286",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32589",
"url": "https://access.redhat.com/security/cve/CVE-2026-32589"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32590",
"url": "https://access.redhat.com/security/cve/CVE-2026-32590"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33894",
"url": "https://access.redhat.com/security/cve/CVE-2026-33894"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-39892",
"url": "https://access.redhat.com/security/cve/CVE-2026-39892"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-40192",
"url": "https://access.redhat.com/security/cve/CVE-2026-40192"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-40895",
"url": "https://access.redhat.com/security/cve/CVE-2026-40895"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42033",
"url": "https://access.redhat.com/security/cve/CVE-2026-42033"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42035",
"url": "https://access.redhat.com/security/cve/CVE-2026-42035"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42039",
"url": "https://access.redhat.com/security/cve/CVE-2026-42039"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42041",
"url": "https://access.redhat.com/security/cve/CVE-2026-42041"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42043",
"url": "https://access.redhat.com/security/cve/CVE-2026-42043"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42044",
"url": "https://access.redhat.com/security/cve/CVE-2026-42044"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4427",
"url": "https://access.redhat.com/security/cve/CVE-2026-4427"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_24853.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Quay 3.15.5",
"tracking": {
"current_release_date": "2026-06-29T19:34:22+00:00",
"generator": {
"date": "2026-06-29T19:34:22+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:24853",
"initial_release_date": "2026-06-09T15:31:40+00:00",
"revision_history": [
{
"date": "2026-06-09T15:31:40+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-09T15:31:49+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T19:34:22+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Quay 3.15",
"product": {
"name": "Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:quay:3.15::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat Quay"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3A5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/quay-rhel8\u0026tag=1780891395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3A82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/quay-container-security-operator-rhel8\u0026tag=1780584268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3Ad3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/quay-bridge-operator-rhel8\u0026tag=1780584376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3A93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/quay-builder-rhel8\u0026tag=1780584626"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/clair-rhel8\u0026tag=1780584775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/quay-operator-rhel8\u0026tag=1780584287"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-bundle@sha256%3A3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-container-security-operator-bundle\u0026tag=1780585491"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3Ab1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-container-security-operator-rhel8\u0026tag=1780584268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-bundle@sha256%3Adb0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-bridge-operator-bundle\u0026tag=1780585598"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3A2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-bridge-operator-rhel8\u0026tag=1780584376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3Af32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8\u0026tag=1780590413"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3Aef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-builder-rhel8\u0026tag=1780584626"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5?arch=amd64\u0026repository_url=registry.redhat.io/quay/clair-rhel8\u0026tag=1780584775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-bundle@sha256%3A955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-operator-bundle\u0026tag=1780894591"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-operator-rhel8\u0026tag=1780584287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3Aafeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-rhel8\u0026tag=1780891395"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3Ae76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a?arch=s390x\u0026repository_url=registry.redhat.io/quay/quay-container-security-operator-rhel8\u0026tag=1780584268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3A904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba?arch=s390x\u0026repository_url=registry.redhat.io/quay/quay-bridge-operator-rhel8\u0026tag=1780584376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3A9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72?arch=s390x\u0026repository_url=registry.redhat.io/quay/quay-builder-rhel8\u0026tag=1780584626"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6?arch=s390x\u0026repository_url=registry.redhat.io/quay/clair-rhel8\u0026tag=1780584775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3Aec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746?arch=s390x\u0026repository_url=registry.redhat.io/quay/quay-operator-rhel8\u0026tag=1780584287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3A88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0?arch=s390x\u0026repository_url=registry.redhat.io/quay/quay-rhel8\u0026tag=1780891395"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64 as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64 as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64 as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64 as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64 as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64 as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64 as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64 as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64 as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"relates_to_product_reference": "Red Hat Quay 3.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64 as a component of Red Hat Quay 3.15",
"product_id": "Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64",
"relates_to_product_reference": "Red Hat Quay 3.15"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-62718",
"cwe": {
"id": "CWE-1289",
"name": "Improper Validation of Unsafe Equivalence in Input"
},
"discovery_date": "2026-04-09T15:01:48.111177+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456913"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client. This vulnerability occurs because Axios does not correctly handle hostname normalization when evaluating NO_PROXY rules. An attacker can exploit this by crafting requests to loopback addresses (e.g., localhost. or [::1]) which bypass the NO_PROXY configuration and are routed through the configured proxy. This can lead to Server-Side Request Forgery (SSRF) vulnerabilities, enabling attackers to access sensitive internal or loopback services that should otherwise be protected.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Server-Side Request Forgery and proxy bypass due to improper hostname normalization",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw has limited impact due to combination of non-default conditions to exploit: the attacker must be able to control or influence URLs passed to axios in a server-side context, the application must have both `HTTP_PROXY` and `NO_PROXY` configured, and the proxy itself must be positioned to act on the misdirected traffic or have been compromised by the attacker to intercept the rerouted traffic.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-62718"
},
{
"category": "external",
"summary": "RHBZ#2456913",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456913"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-62718",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-62718"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-62718",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-62718"
},
{
"category": "external",
"summary": "https://datatracker.ietf.org/doc/html/rfc1034#section-3.1",
"url": "https://datatracker.ietf.org/doc/html/rfc1034#section-3.1"
},
{
"category": "external",
"summary": "https://datatracker.ietf.org/doc/html/rfc3986#section-3.2.2",
"url": "https://datatracker.ietf.org/doc/html/rfc3986#section-3.2.2"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/commit/fb3befb6daac6cad26b2e54094d0f2d9e47f24df",
"url": "https://github.com/axios/axios/commit/fb3befb6daac6cad26b2e54094d0f2d9e47f24df"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/pull/10661",
"url": "https://github.com/axios/axios/pull/10661"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/releases/tag/v1.15.0",
"url": "https://github.com/axios/axios/releases/tag/v1.15.0"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-3p68-rc4w-qgx5",
"url": "https://github.com/axios/axios/security/advisories/GHSA-3p68-rc4w-qgx5"
}
],
"release_date": "2026-04-09T14:31:46.067000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Server-Side Request Forgery and proxy bypass due to improper hostname normalization"
},
{
"acknowledgments": [
{
"names": [
"Antony Di Scala",
"Michael Whale"
]
}
],
"cve": "CVE-2026-2377",
"cwe": {
"id": "CWE-918",
"name": "Server-Side Request Forgery (SSRF)"
},
"discovery_date": "2026-02-11T21:02:44.495000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2439201"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Red Hat Quay and mirror registry for Red Hat OpenShift. The log export feature in these products allows an authenticated user to specify an arbitrary callback URL. A backend process then makes server-side HTTP requests to this provided URL. This vulnerability, known as Server-Side Request Forgery (SSRF), could allow an attacker to send requests from the application\u0027s internal network, potentially leading to the disclosure of sensitive information.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "mirror-registry: quay: quay: Server-Side Request Forgery via log export functionality",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Due to the intended and supported use case of Openshift Mirror Registry, deployment in an offline or network-isolated environment, the impact for this product has been downgraded to `Moderate`.\n\nEven in case of compromise, the blast radius is restricted to mirror-registry. It can not be escalated outside the core product. This vulnerability has been scored based on the lack of change of scope.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-2377"
},
{
"category": "external",
"summary": "RHBZ#2439201",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2439201"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-2377",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-2377"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-2377",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-2377"
}
],
"release_date": "2026-04-08T16:18:10.324000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "mirror-registry: quay: quay: Server-Side Request Forgery via log export functionality"
},
{
"cve": "CVE-2026-4427",
"discovery_date": "2026-03-18T14:02:19.414820+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"notes": [
{
"category": "description",
"text": "No description is available for this CVE.",
"title": "Vulnerability description"
},
{
"category": "other",
"text": "This CVE has been marked as Rejected by the assigning CNA.",
"title": "Statement"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4427"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4427",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4427"
}
],
"release_date": "2026-03-18T13:00:31+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
}
],
"title": "github.com/jackc/pgproto3: pgproto3: Denial of Service via negative field length in DataRow message"
},
{
"cve": "CVE-2026-25679",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-06T22:02:11.567841+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445356"
}
],
"notes": [
{
"category": "description",
"text": "The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "net/url: Incorrect parsing of IPv6 host literals in net/url",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "RHBZ#2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25679",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25679"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://go.dev/cl/752180",
"url": "https://go.dev/cl/752180"
},
{
"category": "external",
"summary": "https://go.dev/issue/77578",
"url": "https://go.dev/issue/77578"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4601",
"url": "https://pkg.go.dev/vuln/GO-2026-4601"
}
],
"release_date": "2026-03-06T21:28:14.211000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-27459",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-03-18T00:01:41.404915+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2448503"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in pyOpenSSL. The set_cookie_generate_callback callback function can be used to generate DTLS cookies. When the callback returns a cookie string or byte sequence longer than 256 bytes, a buffer overflow can be triggered due to a missing bounds checking before copying the data to a fixed-size buffer provided by the underlying OpenSSL library.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "pyOpenSSL: DTLS cookie callback buffer overflow",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw is only exploitable when an application using the pyOpenSSL library provides a custom callback to the set_cookie_generate_callback function. For the buffer overflow to occur, the callback function must return a cookie string or byte sequence longer than 256 bytes, limiting the exposure of this issue. Due to these reasons, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27459"
},
{
"category": "external",
"summary": "RHBZ#2448503",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448503"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27459",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27459"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27459",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27459"
},
{
"category": "external",
"summary": "https://github.com/pyca/pyopenssl/blob/358cbf29c4e364c59930e53a270116249581eaa3/CHANGELOG.rst",
"url": "https://github.com/pyca/pyopenssl/blob/358cbf29c4e364c59930e53a270116249581eaa3/CHANGELOG.rst"
},
{
"category": "external",
"summary": "https://github.com/pyca/pyopenssl/commit/57f09bb4bb051d3bc2a1abd36e9525313d5cd408",
"url": "https://github.com/pyca/pyopenssl/commit/57f09bb4bb051d3bc2a1abd36e9525313d5cd408"
},
{
"category": "external",
"summary": "https://github.com/pyca/pyopenssl/security/advisories/GHSA-5pwr-322w-8jr4",
"url": "https://github.com/pyca/pyopenssl/security/advisories/GHSA-5pwr-322w-8jr4"
}
],
"release_date": "2026-03-17T23:34:28.483000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
},
{
"category": "workaround",
"details": "To mitigate this flaw, ensure the callback provided to the set_cookie_generate_callback function strictly limits the returned cookie string or byte sequence to under 256 bytes.",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "pyOpenSSL: DTLS cookie callback buffer overflow"
},
{
"cve": "CVE-2026-27962",
"cwe": {
"id": "CWE-347",
"name": "Improper Verification of Cryptographic Signature"
},
"discovery_date": "2026-03-16T18:02:07.041902+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2448164"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Authlib, a Python library used for creating secure authentication and authorization systems. This vulnerability, known as JWK (JSON Web Key) Header Injection, affects how Authlib verifies digital signatures in JWS (JSON Web Signature) tokens. An attacker can exploit this by creating a specially crafted token that includes their own cryptographic key in the header. When the system attempts to verify this token without a predefined key, it mistakenly uses the attacker\u0027s key, allowing them to bypass authentication and gain unauthorized access.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "authlib: Authlib: Authentication bypass due to JWK Header Injection vulnerability",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This critical vulnerability in Authlib\u0027s JWS implementation allows unauthenticated attackers to forge JWTs by embedding their own cryptographic key in the token header. Impact is high to confidentiality and integrity as attackers can bypass authentication.\n\nThe impact for Red Hat Quay is rated as low because it imports authlib solely as a JWK parsing utility and performs all JWT signature verification through PyJWT, so the vulnerable jws.deserialize_compact() code path is never called.\n\nRed Hat OpenShift AI is not affected, since authlib is only present as a transitive dependency in the dev dependency group and is not included in production image builds, so the vulnerable code is not present in the shipped product.\n\nRed Hat Satellite is not affected, as authlib is only present as a dependency of fastmcp. In Satellite, fastmcp only invokes authlib using jwt.decode() which isn\u0027t able to reach the vulnerability condition even with key=none.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27962"
},
{
"category": "external",
"summary": "RHBZ#2448164",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448164"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27962",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27962"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27962",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27962"
},
{
"category": "external",
"summary": "https://github.com/authlib/authlib/commit/a5d4b2d4c9e46bfa11c82f85fdc2bcc0b50ae681",
"url": "https://github.com/authlib/authlib/commit/a5d4b2d4c9e46bfa11c82f85fdc2bcc0b50ae681"
},
{
"category": "external",
"summary": "https://github.com/authlib/authlib/releases/tag/v1.6.9",
"url": "https://github.com/authlib/authlib/releases/tag/v1.6.9"
},
{
"category": "external",
"summary": "https://github.com/authlib/authlib/security/advisories/GHSA-wvwj-cvrp-7pv5",
"url": "https://github.com/authlib/authlib/security/advisories/GHSA-wvwj-cvrp-7pv5"
}
],
"release_date": "2026-03-16T17:34:38.946000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "authlib: Authlib: Authentication bypass due to JWK Header Injection vulnerability"
},
{
"cve": "CVE-2026-32280",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-08T02:01:19.572351+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456339"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "RHBZ#2456339",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456339"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32280",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32280"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://go.dev/cl/758320",
"url": "https://go.dev/cl/758320"
},
{
"category": "external",
"summary": "https://go.dev/issue/78282",
"url": "https://go.dev/issue/78282"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4947",
"url": "https://pkg.go.dev/vuln/GO-2026-4947"
}
],
"release_date": "2026-04-08T01:06:58.595000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building"
},
{
"cve": "CVE-2026-32282",
"cwe": {
"id": "CWE-367",
"name": "Time-of-check Time-of-use (TOCTOU) Race Condition"
},
"discovery_date": "2026-04-08T02:01:12.683211+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456336"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs access to the system and the required permissions to create a symbolic link. Additionally, the attacker must swap the target file with a symbolic link in the exact window after the `Root.Chmod` function checks its target but before acting. Due to these conditions, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "RHBZ#2456336",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456336"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32282",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32282"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://go.dev/cl/763761",
"url": "https://go.dev/cl/763761"
},
{
"category": "external",
"summary": "https://go.dev/issue/78293",
"url": "https://go.dev/issue/78293"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4864",
"url": "https://pkg.go.dev/vuln/GO-2026-4864"
}
],
"release_date": "2026-04-08T01:06:55.953000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root"
},
{
"cve": "CVE-2026-32286",
"cwe": {
"id": "CWE-1285",
"name": "Improper Validation of Specified Index, Position, or Offset in Input"
},
"discovery_date": "2026-03-26T20:01:59.226117+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451847"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a \"slice bounds out of range panic\", resulting in a Denial of Service (DoS) for the affected application.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The PostgreSQL server multicluster-globalhub-manager connects to is either provisioned by the operator itself or specified by the admin managing the deployment. To successfully exploit the vulnerability in this context the attacker would need to compromise the operator-deployed PostgreSQL server to force a crafted malicious DataRow message or they would need to have the privileges required to modify the operator-provisioned deployment or configure globalhub-manager to use a compromised/malicious \u201cBYO Postgres\u201d server.\n\nThe first scenario (compromising a legitimate PostgreSQL server) would change Attack Complexity from Low to High resulting in an adjusted CVSS v3.1 score of 5.9 (Moderate)\nThe other scenarios (manipulating the operator provisioned-deployment or configuring the globalhub-manager to use a malicious server) would maintain AC:L but would require privileged access. This would change Privileges Required from None to High resulting in an adjusted CVSS v3.1 score of 4.9 (Moderate)\n\nBased on the above the Impact Rating for multicluster-globalhub-manager-rhel9 is Moderate.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "RHBZ#2451847",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451847"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32286",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32286"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://github.com/golang/vulndb/issues/4518",
"url": "https://github.com/golang/vulndb/issues/4518"
},
{
"category": "external",
"summary": "https://github.com/jackc/pgx/issues/2507",
"url": "https://github.com/jackc/pgx/issues/2507"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4518",
"url": "https://pkg.go.dev/vuln/GO-2026-4518"
}
],
"release_date": "2026-03-26T19:40:51.974000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server"
},
{
"acknowledgments": [
{
"names": [
"Antony Di Scala",
"Michael Whale"
]
}
],
"cve": "CVE-2026-32589",
"cwe": {
"id": "CWE-639",
"name": "Authorization Bypass Through User-Controlled Key"
},
"discovery_date": "2026-03-12T14:43:07.878000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2446963"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Red Hat Quay\u0027s container image upload process. An authenticated user with push access to any repository on the registry can interfere with image uploads in progress by other users, including those in repositories they do not have access to. This could allow the attacker to read, modify, or cancel another user\u0027s in-progress image upload.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "mirror-registry: quay: insecure direct object reference in BlobUpload",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation requires valid login credentials to the Quay registry. Unauthenticated users cannot exploit this flaw.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32589"
},
{
"category": "external",
"summary": "RHBZ#2446963",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2446963"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32589",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32589"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32589",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32589"
}
],
"release_date": "2026-04-08T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "mirror-registry: quay: insecure direct object reference in BlobUpload"
},
{
"acknowledgments": [
{
"names": [
"Antony Di Scala",
"Michael Whale"
]
}
],
"cve": "CVE-2026-32590",
"cwe": {
"id": "CWE-502",
"name": "Deserialization of Untrusted Data"
},
"discovery_date": "2026-03-12T14:43:11.443000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2446964"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Red Hat Quay\u0027s handling of resumable container image layer uploads. The upload process stores intermediate data in the database using a format that, if tampered with, could allow an attacker to execute arbitrary code on the Quay server.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "mirror-registry: remote code execution using pickle deserialization",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation requires valid login credentials. The attacker must be authenticated to the registry, either through the web interface or through a container tool such as Podman.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32590"
},
{
"category": "external",
"summary": "RHBZ#2446964",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2446964"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32590",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32590"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32590",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32590"
}
],
"release_date": "2026-04-08T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "mirror-registry: remote code execution using pickle deserialization"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-33894",
"cwe": {
"id": "CWE-347",
"name": "Improper Verification of Cryptographic Signature"
},
"discovery_date": "2026-03-27T21:02:52.462999+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2452464"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Forge (also called `node-forge`), a JavaScript implementation of Transport Layer Security. A remote attacker could exploit weaknesses in the RSASSA PKCS#1 v1.5 signature verification process. By crafting malicious signatures that include extra data within the ASN structure and do not meet padding requirements, an attacker can bypass signature validation. This allows for the creation of forged signatures that appear legitimate, potentially compromising the integrity and authenticity of communications.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "node-forge: Forge: Signature Forgery via Weak RSASSA PKCS#1 v1.5 Verification",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33894"
},
{
"category": "external",
"summary": "RHBZ#2452464",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2452464"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33894",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33894"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33894",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33894"
},
{
"category": "external",
"summary": "https://datatracker.ietf.org/doc/html/rfc2313#section-8",
"url": "https://datatracker.ietf.org/doc/html/rfc2313#section-8"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-ppp5-5v6c-4jwp",
"url": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-ppp5-5v6c-4jwp"
},
{
"category": "external",
"summary": "https://mailarchive.ietf.org/arch/msg/openpgp/5rnE9ZRN1AokBVj3VqblGlP63QE",
"url": "https://mailarchive.ietf.org/arch/msg/openpgp/5rnE9ZRN1AokBVj3VqblGlP63QE"
},
{
"category": "external",
"summary": "https://www.rfc-editor.org/rfc/rfc8017.html",
"url": "https://www.rfc-editor.org/rfc/rfc8017.html"
}
],
"release_date": "2026-03-27T20:45:49.583000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "node-forge: Forge: Signature Forgery via Weak RSASSA PKCS#1 v1.5 Verification"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
},
{
"cve": "CVE-2026-39892",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-08T22:00:59.416053+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456735"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the cryptography library. This vulnerability occurs when a non-contiguous buffer is passed to certain application programming interfaces (APIs) that accept Python buffers, such as Hash.update(). A remote attacker could exploit this to cause a buffer overflow, potentially leading to a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cryptography: Cryptography: Buffer overflow via non-contiguous buffer in API",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "In default configurations Red Hat products isolate service processes from total system access. Should an attacker be able to exploit this vulnerability their impact will be limited to that service account and they will not have access to the broader system.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-39892"
},
{
"category": "external",
"summary": "RHBZ#2456735",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456735"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-39892",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-39892"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-39892",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-39892"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/08/12",
"url": "http://www.openwall.com/lists/oss-security/2026/04/08/12"
},
{
"category": "external",
"summary": "https://github.com/pyca/cryptography/commit/622d672e429a7cff836a23c5903683dbec1901f5",
"url": "https://github.com/pyca/cryptography/commit/622d672e429a7cff836a23c5903683dbec1901f5"
},
{
"category": "external",
"summary": "https://github.com/pyca/cryptography/security/advisories/GHSA-p423-j2cm-9vmq",
"url": "https://github.com/pyca/cryptography/security/advisories/GHSA-p423-j2cm-9vmq"
}
],
"release_date": "2026-04-08T20:49:41.967000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "cryptography: Cryptography: Buffer overflow via non-contiguous buffer in API"
},
{
"cve": "CVE-2026-40192",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2026-04-16T00:00:49.590876+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458856"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Pillow, a Python imaging library. This vulnerability allows a remote attacker to trigger a denial of service (DoS) by providing a specially crafted FITS image file. The library\u0027s failure to limit the amount of GZIP-compressed data during decoding can lead to unbounded memory consumption, causing the system to crash or experience severe performance issues.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Pillow: Pillow: Denial of Service via decompression bomb in FITS image processing",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40192"
},
{
"category": "external",
"summary": "RHBZ#2458856",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458856"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40192",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40192"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40192",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40192"
},
{
"category": "external",
"summary": "https://github.com/python-pillow/Pillow/commit/3cb854e8b2bab43f40e342e665f9340d861aa628",
"url": "https://github.com/python-pillow/Pillow/commit/3cb854e8b2bab43f40e342e665f9340d861aa628"
},
{
"category": "external",
"summary": "https://github.com/python-pillow/Pillow/pull/9521",
"url": "https://github.com/python-pillow/Pillow/pull/9521"
},
{
"category": "external",
"summary": "https://github.com/python-pillow/Pillow/security/advisories/GHSA-whj4-6x5x-4v2j",
"url": "https://github.com/python-pillow/Pillow/security/advisories/GHSA-whj4-6x5x-4v2j"
},
{
"category": "external",
"summary": "https://pillow.readthedocs.io/en/stable/releasenotes/12.2.0.html#prevent-fits-decompression-bomb",
"url": "https://pillow.readthedocs.io/en/stable/releasenotes/12.2.0.html#prevent-fits-decompression-bomb"
}
],
"release_date": "2026-04-15T22:53:56.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Pillow: Pillow: Denial of Service via decompression bomb in FITS image processing"
},
{
"cve": "CVE-2026-40895",
"cwe": {
"id": "CWE-212",
"name": "Improper Removal of Sensitive Information Before Storage or Transfer"
},
"discovery_date": "2026-04-21T21:02:33.280553+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460297"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in follow-redirects. When an HTTP request follows a cross-domain redirect (a redirection to a different domain), custom authentication headers, such as X-API-Key or X-Auth-Token, are not properly stripped. This allows these sensitive headers to be forwarded verbatim to the redirect target, potentially leading to the unintended disclosure of authentication information to an untrusted third party.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "follow-redirects: follow-redirects: Information disclosure via cross-domain redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40895"
},
{
"category": "external",
"summary": "RHBZ#2460297",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460297"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40895",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40895"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40895",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40895"
},
{
"category": "external",
"summary": "https://github.com/follow-redirects/follow-redirects/security/advisories/GHSA-r4q5-vmmm-2653",
"url": "https://github.com/follow-redirects/follow-redirects/security/advisories/GHSA-r4q5-vmmm-2653"
}
],
"release_date": "2026-04-21T19:59:59.759000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "follow-redirects: follow-redirects: Information disclosure via cross-domain redirects"
},
{
"cve": "CVE-2026-42033",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-04-24T18:01:20.937507+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461607"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, an HTTP client library. This vulnerability allows an attacker to exploit a prototype pollution issue if another part of the application has already polluted the Object.prototype. By doing so, the attacker can intercept and modify JSON responses or take control of the HTTP communication. This could lead to unauthorized access to sensitive information like user credentials and request details.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: HTTP Transport Hijacking via Prototype Pollution",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42033"
},
{
"category": "external",
"summary": "RHBZ#2461607",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461607"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42033",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42033"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42033",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42033"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-pf86-5x62-jrwf",
"url": "https://github.com/axios/axios/security/advisories/GHSA-pf86-5x62-jrwf"
}
],
"release_date": "2026-04-24T17:36:44.132000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: HTTP Transport Hijacking via Prototype Pollution"
},
{
"cve": "CVE-2026-42035",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-04-24T18:01:17.109481+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461606"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a software library for making network requests. A remote attacker can exploit a prototype pollution vulnerability to inject arbitrary HTTP headers into outgoing requests. This occurs when the application\u0027s core object definitions are manipulated, causing Axios to misinterpret data and include attacker-controlled headers in network communications. This could lead to unauthorized actions or data manipulation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Arbitrary HTTP header injection via prototype pollution",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42035"
},
{
"category": "external",
"summary": "RHBZ#2461606",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461606"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42035",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42035"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42035",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42035"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-6chq-wfr3-2hj9",
"url": "https://github.com/axios/axios/security/advisories/GHSA-6chq-wfr3-2hj9"
}
],
"release_date": "2026-04-24T17:38:07.752000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "axios: Axios: Arbitrary HTTP header injection via prototype pollution"
},
{
"cve": "CVE-2026-42039",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-24T19:01:44.887156+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461630"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client for browsers and Node.js. This vulnerability occurs because the `toFormData` function recursively processes nested objects without a depth limit. A remote attacker can exploit this by sending deeply nested request data, which causes the Node.js process to crash due to a RangeError, leading to a potential Denial of Service (DoS) if the process crashes.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Node.js: Axios: Denial of Service via unbounded recursion in toFormData with deeply nested request data",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42039"
},
{
"category": "external",
"summary": "RHBZ#2461630",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461630"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42039",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42039"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42039",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42039"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-62hf-57xw-28j9",
"url": "https://github.com/axios/axios/security/advisories/GHSA-62hf-57xw-28j9"
}
],
"release_date": "2026-04-24T18:01:30.775000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Node.js: Axios: Denial of Service via unbounded recursion in toFormData with deeply nested request data"
},
{
"cve": "CVE-2026-42041",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-04-24T19:01:41.034289+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461629"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client. This vulnerability, a Prototype Pollution \"Gadget\" attack, allows an attacker to manipulate the `Object.prototype.validateStatus` property. By polluting this property, all HTTP error responses (such as 401, 403, or 500) are silently treated as successful responses. This can lead to a complete bypass of application-level authentication and error handling, potentially granting unauthorized access.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Authentication bypass due to prototype pollution of HTTP error handling",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42041"
},
{
"category": "external",
"summary": "RHBZ#2461629",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461629"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42041",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42041"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42041",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42041"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-w9j2-pvgh-6h63",
"url": "https://github.com/axios/axios/security/advisories/GHSA-w9j2-pvgh-6h63"
}
],
"release_date": "2026-04-24T17:55:30.036000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Authentication bypass due to prototype pollution of HTTP error handling"
},
{
"cve": "CVE-2026-42043",
"cwe": {
"id": "CWE-918",
"name": "Server-Side Request Forgery (SSRF)"
},
"discovery_date": "2026-04-24T19:01:22.552379+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461626"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client. An attacker who can control the destination address of an Axios request can exploit this vulnerability. By using specific internal network addresses (within the 127.0.0.0/8 range, excluding 127.0.0.1), the attacker can completely bypass the NO_PROXY protection, potentially leading to unauthorized access or information disclosure within the network. This issue is an incomplete fix for a previous vulnerability.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: NO_PROXY bypass via crafted URL",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42043"
},
{
"category": "external",
"summary": "RHBZ#2461626",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461626"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42043",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42043"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42043",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42043"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-pmwg-cvhr-8vh7",
"url": "https://github.com/axios/axios/security/advisories/GHSA-pmwg-cvhr-8vh7"
}
],
"release_date": "2026-04-24T17:54:42.668000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: NO_PROXY bypass via crafted URL"
},
{
"cve": "CVE-2026-42044",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-04-24T19:01:13.418725+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461624"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a widely used HTTP client. This vulnerability, known as a Prototype Pollution \"Gadget\" attack, allows a remote attacker to subtly alter JSON API responses. By manipulating a specific function, an attacker can selectively modify data within these responses. This could lead to significant security breaches, including unauthorized privilege escalation, fraudulent balance manipulation, or bypassing critical authorization checks.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Invisible JSON Response Tampering via Prototype Pollution Gadget",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42044"
},
{
"category": "external",
"summary": "RHBZ#2461624",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461624"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42044",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42044"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42044",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42044"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-3w6x-2g7m-8v23",
"url": "https://github.com/axios/axios/security/advisories/GHSA-3w6x-2g7m-8v23"
}
],
"release_date": "2026-04-24T17:49:49.517000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-09T15:31:40+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24853"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:112909f56592b6d280a68b8104fe0c6f771c7c0156197950fcd1fcccae3c7fbf_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:6ebb0d29e5d4aeb1ec3c16f8478cd1d615d3b42275dd82a20ff966887d603bd6_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/clair-rhel8@sha256:80e7c357130e8a1a2db38713055d9a3e04812d5dd496d937d0d51b5c27f97da5_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:db0def651635715bc2406aef174f500cdc35d52cd693785629c149d0269b5f33_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2bab9301dc7f0adb24d243b7c0bb26733751f4bf2c84edbf464ac8dd2753bfa0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:904a679c9230596aea5aab19cb6ecd16d6f7c7e6cca06aca63498ff4896733ba_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:d3d569cf1570a9a0edd4070660ceff622429c98345c369af0ace3458e0ba2308_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f32c7fd3bde4d324f96251826f85aac887aaa44a526eb2e8549a00c6a71abcd0_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:93d75149f451f380dbc59b4f093e0bf8f3ab05044e584f9a229c46abd572cf94_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:9dd5bc1416811a51cc056720e65035c713f335f43d8209bfad4d8d983b36ac72_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-builder-rhel8@sha256:ef0552c8953fc5958bb4bb548820802cc30f0aa8366c0e369a0d30e1f5ddad9b_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:3deb2d564ed7e8ce85861e81681211d84a9c147bb5807c642fe788980aba3038_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:82e7c7f7d3a44f312428d1fa7b0c1c6fc644fbf20e9370b2d5803f6687a189a5_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:b1a0cc358536e22f07c9672957484afebf230145a5c85fa4f8acd11349adb219_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:e76e3b94c8aae99addf53b09f15f8f9d52003bfdb9213c93b67b58e71fcd192a_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-bundle@sha256:955f6c83ce8e6cdd075ef5c7396a8b19f9b8021cc5fb1b909a1dda05f0e3f13f_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:7be53b8c4851f7ca174c32556cdc2be807cabfb778ced23054b12288cc7ebbee_amd64",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:9abfc7d4e96a46868548380c7db2f11a7ec406c809fb8eee9a7bc3a049adcbbe_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-operator-rhel8@sha256:ec4e8658a1c3f00bd08e8b009cd042bc59a3d870cd17a7db940f1e12d4c05746_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:5b1b98cd31ba150aecd6ef44c2bd8d79ae64380c8e974a4c8c1bb66fb4a38ce9_ppc64le",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:88ca55bb3177d8111971f1ba134bec7967289bfae64ecdf0b751dba0df82d9f0_s390x",
"Red Hat Quay 3.15:registry.redhat.io/quay/quay-rhel8@sha256:afeeca0c1a653b5c375af4cca8dac1f52db846013d8b50e914ed62e1b7b1aa62_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Invisible JSON Response Tampering via Prototype Pollution Gadget"
}
]
}
RHSA-2026:24977
Vulnerability from csaf_redhat - Published: 2026-06-10 04:27 - Updated: 2026-06-29 19:34A flaw was found in Legion of the Bouncy Castle Inc. BC-JAVA bcprov. The `GOSTCTR` implementation is unable to securely process more than 255 blocks of data due to keystream reuse. This issue allows an attacker to break the fundamental confidentiality of any data protected by the `G3413CTRBlockCipher`, potentially leading to the recovery and access of encrypted data.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in vLLM. A denial of service (DoS) vulnerability can be triggered by sending a single HTTP GET request with an extremely large X-Forwarded-For header to an HTTP endpoint. This results in server memory exhaustion, potentially leading to a crash or unresponsiveness. The attack does not require authentication, making it exploitable by any remote user.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in Axios, a promise-based HTTP client. This vulnerability occurs because Axios does not correctly handle hostname normalization when evaluating NO_PROXY rules. An attacker can exploit this by crafting requests to loopback addresses (e.g., localhost. or [::1]) which bypass the NO_PROXY configuration and are routed through the configured proxy. This can lead to Server-Side Request Forgery (SSRF) vulnerabilities, enabling attackers to access sensitive internal or loopback services that should otherwise be protected.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in aiohttp, an asynchronous HTTP client/server framework for Python. A remote attacker could exploit this vulnerability by sending a specially crafted POST request to an application using the Request.post() method, provided that Python optimizations are enabled. This could lead to an infinite loop, resulting in a Denial of Service (DoS) attack, making the affected application unavailable.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in aiohttp. A remote attacker can craft a malicious request that, when processed by an aiohttp server using the `Request.post()` method, causes the server's memory to fill uncontrollably. This can lead to a Denial of Service (DoS) by freezing the server, making it unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in the `keras` package. This vulnerability allows an attacker to execute unauthorized code on a victim's system. It occurs when a victim loads a specially crafted `.keras` model, even if the `safe_mode` security feature is active. The issue arises because the `keras` package can unconditionally load external TensorFlow SavedModels without sufficient validation, thereby bypassing the intended security protections and leading to arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in lodash. The fix for CVE-2021-23337 added validation for the variable option in _.template but did not apply the same validation to options.imports key names. Both paths flow into the same Function() constructor sink. Additionally, _.template uses assignInWith to merge imports, which enumerates inherited properties via for..in. If Object.prototype has been polluted by any other vector, the polluted keys are copied into the imports object and passed to Function().
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in fast-uri. A remote attacker could exploit this vulnerability by providing a specially crafted Uniform Resource Locator (URL) containing percent-encoded path separators and dot segments. Due to incorrect processing, fast-uri would decode these elements before proper normalization, leading to distinct URLs resolving to the same internal path. This could allow an attacker to bypass security policies that rely on path-based comparisons, potentially gaining unauthorized access to resources.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
A flaw was found in pyasn1, a generic ASN.1 library for Python. A remote attacker could exploit this vulnerability by sending a specially crafted RELATIVE-OID with excessive continuation octets. This input validation vulnerability leads to memory exhaustion, resulting in a Denial of Service (DoS) for the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
A flaw was found in PyTorch, a Python package for tensor computation. A remote attacker could craft a malicious checkpoint file, which, when loaded using the `weights_only` unpickler, could lead to memory corruption. This vulnerability may enable an attacker to achieve arbitrary code execution on the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
A flaw was found in xgrammar, an open-source library for structured generation. This vulnerability allows an attacker to trigger a segmentation fault, causing the program to crash and resulting in a Denial of Service (DoS). The issue occurs due to improper handling of multi-level nested syntax.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in vLLM, an inference and serving engine for large language models (LLMs). A remote attacker can exploit this Server-Side Request Forgery (SSRF) bypass vulnerability in the `load_from_url_async` method. The flaw occurs because the URL validation and the actual HTTP request handling use different parsing libraries, leading to inconsistencies. This allows an attacker to bypass existing SSRF protections, potentially leading to the disclosure of sensitive information from internal network resources.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in Open Neural Network Exchange (ONNX), an open standard for machine learning interoperability. This path traversal vulnerability, exploitable via a symbolic link (symlink), allows an attacker to read arbitrary files located outside of the intended model or user-provided directories. This could lead to unauthorized information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
A flaw was found in vLLM, an inference and serving engine for large language models (LLMs). Two model implementation files hardcode `trust_remote_code=True` when loading sub-components. This bypasses the user's explicit `--trust-remote-code=False` security opt-out, allowing a remote attacker to achieve remote code execution through malicious model repositories.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in Open Neural Network Exchange (ONNX), an open standard for machine learning interoperability. A security control bypass exists in the `onnx.hub.load()` function due to improper logic in its repository trust verification. An attacker can exploit this by providing a malicious model, which, when loaded with the `silent=True` parameter, suppresses all security warnings. This vulnerability transforms a standard model-loading function into a vector for Zero-Interaction Supply-Chain Attacks.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
A flaw was found in python-dotenv. A local attacker can exploit this by crafting a symbolic link, which the `set_key()` and `unset_key()` functions in python-dotenv follow when rewriting `.env` files. This can lead to the overwriting of arbitrary files on the system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in Immutable.js, a library for persistent immutable data structures. This vulnerability, known as Prototype Pollution, allows an attacker with low privileges to inject unwanted properties into core JavaScript object prototypes without user interaction. By manipulating specific APIs such as mergeDeep(), mergeDeepWith(), merge(), Map.toJS(), and Map.toObject(), a remote attacker could potentially execute arbitrary code or cause a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
A flaw was found in SVGO, an SVG (Scalable Vector Graphics) Optimizer. This vulnerability allows a remote attacker to cause a Denial of Service (DoS) by submitting a specially crafted XML file. The application's failure to properly guard against XML entity expansion or recursion can lead to the Node.js process consuming excessive memory and crashing.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in tornado-python. A remote attacker can exploit this vulnerability by sending a specially crafted, very large multipart body with numerous parts. Because the parsing of these large bodies occurs synchronously on the main thread, it can consume excessive resources, leading to a denial of service (DoS) for the application.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
A missing verification step has been discovered in PyJWT. PyJWT does not validate the crit (Critical) Header Parameter defined in RFC 7515 §4.1.11. When a JWS token contains a crit array listing extensions that PyJWT does not understand, the library accepts the token instead of rejecting it. This violates the MUST requirement in the RFC.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A path traversal flaw has been identified in Ray Dashboard in the Ray Pypi package. Due to improper validation and sanitization of user-supplied paths in the static file handling mechanism, an attacker can use traversal sequences (e.g., ../) to access files outside the intended static directory, resulting in local file disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
A flaw was found in NLTK (Natural Language Toolkit), specifically in the `nltk.app.wordnet_app` component. An unauthenticated remote attacker can exploit this vulnerability by sending a specially crafted GET request to the local WordNet Browser HTTP server when it is running in its default configuration. This action causes the server process to terminate immediately, leading to a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in AIOHTTP, an asynchronous HTTP client/server framework for asyncio and Python. An attacker could exploit this vulnerability by providing untrusted input to the `CookieJar.load()` function. This could potentially lead to arbitrary code execution, allowing the attacker to run malicious code on the affected system. This issue is most likely to occur in applications that allow attacker-controlled files to be loaded.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
A flaw was found in the cryptography library. This vulnerability occurs when a non-contiguous buffer is passed to certain application programming interfaces (APIs) that accept Python buffers, such as Hash.update(). A remote attacker could exploit this to cause a buffer overflow, potentially leading to a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in Pillow, a Python imaging library. This vulnerability allows a remote attacker to trigger a denial of service (DoS) by providing a specially crafted FITS image file. The library's failure to limit the amount of GZIP-compressed data during decoding can lead to unbounded memory consumption, causing the system to crash or experience severe performance issues.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in follow-redirects. When an HTTP request follows a cross-domain redirect (a redirection to a different domain), custom authentication headers, such as X-API-Key or X-Auth-Token, are not properly stripped. This allows these sensitive headers to be forwarded verbatim to the redirect target, potentially leading to the unintended disclosure of authentication information to an untrusted third party.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
A flaw was found in DOMPurify, a DOM-only cross-site scripting sanitizer. A remote attacker could exploit an inconsistency in how forbidden tags and attributes are handled when function-based tag additions are used. This allows malicious HTML, MathML, or SVG elements to bypass sanitization and execute arbitrary code in the user's browser, leading to Cross-Site Scripting (XSS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in protobufjs, a JavaScript (JS) library used for compiling protobuf definitions. A remote attacker with low privileges can exploit this vulnerability by injecting arbitrary code into the "type" fields of protobuf definitions. This malicious code will then execute during the object decoding process, leading to arbitrary code execution and potentially full system compromise.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
A flaw was found in Axios, an HTTP client library. This vulnerability allows an attacker to exploit a prototype pollution issue if another part of the application has already polluted the Object.prototype. By doing so, the attacker can intercept and modify JSON responses or take control of the HTTP communication. This could lead to unauthorized access to sensitive information like user credentials and request details.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
A flaw was found in Axios, a software library for making network requests. A remote attacker can exploit a prototype pollution vulnerability to inject arbitrary HTTP headers into outgoing requests. This occurs when the application's core object definitions are manipulated, causing Axios to misinterpret data and include attacker-controlled headers in network communications. This could lead to unauthorized actions or data manipulation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
Workaround
|
A flaw was found in Axios, a promise-based HTTP client for browsers and Node.js. This vulnerability occurs because the `toFormData` function recursively processes nested objects without a depth limit. A remote attacker can exploit this by sending deeply nested request data, which causes the Node.js process to crash due to a RangeError, leading to a potential Denial of Service (DoS) if the process crashes.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
A flaw was found in Axios, a promise-based HTTP client. This vulnerability, a Prototype Pollution "Gadget" attack, allows an attacker to manipulate the `Object.prototype.validateStatus` property. By polluting this property, all HTTP error responses (such as 401, 403, or 500) are silently treated as successful responses. This can lead to a complete bypass of application-level authentication and error handling, potentially granting unauthorized access.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
A flaw was found in Axios, a promise-based HTTP client. An attacker who can control the destination address of an Axios request can exploit this vulnerability. By using specific internal network addresses (within the 127.0.0.0/8 range, excluding 127.0.0.1), the attacker can completely bypass the NO_PROXY protection, potentially leading to unauthorized access or information disclosure within the network. This issue is an incomplete fix for a previous vulnerability.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 | — |
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Updated images are now available for Red Hat OpenShift AI.",
"title": "Topic"
},
{
"category": "general",
"text": "Release of RHOAI 2.25.7 provides these changes:",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:24977",
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-14813",
"url": "https://access.redhat.com/security/cve/CVE-2025-14813"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-48956",
"url": "https://access.redhat.com/security/cve/CVE-2025-48956"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61726",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-62718",
"url": "https://access.redhat.com/security/cve/CVE-2025-62718"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-69227",
"url": "https://access.redhat.com/security/cve/CVE-2025-69227"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-69228",
"url": "https://access.redhat.com/security/cve/CVE-2025-69228"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-1462",
"url": "https://access.redhat.com/security/cve/CVE-2026-1462"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-23490",
"url": "https://access.redhat.com/security/cve/CVE-2026-23490"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-24747",
"url": "https://access.redhat.com/security/cve/CVE-2026-24747"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-25048",
"url": "https://access.redhat.com/security/cve/CVE-2026-25048"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-25960",
"url": "https://access.redhat.com/security/cve/CVE-2026-25960"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27489",
"url": "https://access.redhat.com/security/cve/CVE-2026-27489"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27893",
"url": "https://access.redhat.com/security/cve/CVE-2026-27893"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-28500",
"url": "https://access.redhat.com/security/cve/CVE-2026-28500"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-28684",
"url": "https://access.redhat.com/security/cve/CVE-2026-28684"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-29063",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-29074",
"url": "https://access.redhat.com/security/cve/CVE-2026-29074"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-31958",
"url": "https://access.redhat.com/security/cve/CVE-2026-31958"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32280",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32597",
"url": "https://access.redhat.com/security/cve/CVE-2026-32597"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32981",
"url": "https://access.redhat.com/security/cve/CVE-2026-32981"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33231",
"url": "https://access.redhat.com/security/cve/CVE-2026-33231"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34993",
"url": "https://access.redhat.com/security/cve/CVE-2026-34993"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-39892",
"url": "https://access.redhat.com/security/cve/CVE-2026-39892"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-40192",
"url": "https://access.redhat.com/security/cve/CVE-2026-40192"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-40895",
"url": "https://access.redhat.com/security/cve/CVE-2026-40895"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41240",
"url": "https://access.redhat.com/security/cve/CVE-2026-41240"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41242",
"url": "https://access.redhat.com/security/cve/CVE-2026-41242"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42033",
"url": "https://access.redhat.com/security/cve/CVE-2026-42033"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42035",
"url": "https://access.redhat.com/security/cve/CVE-2026-42035"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42039",
"url": "https://access.redhat.com/security/cve/CVE-2026-42039"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42041",
"url": "https://access.redhat.com/security/cve/CVE-2026-42041"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42043",
"url": "https://access.redhat.com/security/cve/CVE-2026-42043"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4800",
"url": "https://access.redhat.com/security/cve/CVE-2026-4800"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-6321",
"url": "https://access.redhat.com/security/cve/CVE-2026-6321"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"url": "https://docs.redhat.com/en/documentation/red_hat_openshift_ai/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_24977.json"
}
],
"title": "Red Hat Security Advisory: RHOAI 2.25.7 - Red Hat OpenShift AI",
"tracking": {
"current_release_date": "2026-06-29T19:34:22+00:00",
"generator": {
"date": "2026-06-29T19:34:22+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:24977",
"initial_release_date": "2026-06-10T04:27:13+00:00",
"revision_history": [
{
"date": "2026-06-10T04:27:13+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-10T04:27:24+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T19:34:22+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift AI 2.25",
"product": {
"name": "Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift_ai:2.25::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift AI"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"product_id": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-built-in-detector-rhel9@sha256%3Abefa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-built-in-detector-rhel9\u0026tag=1780069183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"product_id": "registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-caikit-nlp-rhel9@sha256%3A8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-caikit-nlp-rhel9\u0026tag=1780069094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"product_id": "registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-caikit-tgis-serving-rhel9@sha256%3A2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9\u0026tag=1780388133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"product_id": "registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-codeflare-operator-rhel9@sha256%3A86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-codeflare-operator-rhel9\u0026tag=1780393157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"product_id": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-dashboard-rhel9@sha256%3A5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-dashboard-rhel9\u0026tag=1780467029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"product_id": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-data-science-pipelines-argo-argoexec-rhel9@sha256%3A3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9\u0026tag=1780393223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"product_id": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256%3A2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9\u0026tag=1780392871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"product_id": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-kueue-controller-rhel9@sha256%3Aad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-kueue-controller-rhel9\u0026tag=1780393069"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"product_id": "registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-data-science-pipelines-operator-controller-rhel9@sha256%3Aff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9\u0026tag=1780392570"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"product_id": "registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-feast-operator-rhel9@sha256%3Ab1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-feast-operator-rhel9\u0026tag=1780069293"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"product_id": "registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-feature-server-rhel9@sha256%3Ac510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-feature-server-rhel9\u0026tag=1780069135"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"product_id": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-fms-guardrails-orchestrator-rhel9@sha256%3Af3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9\u0026tag=1780069197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"product_id": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-guardrails-detector-huggingface-runtime-rhel9@sha256%3Add3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9\u0026tag=1780069122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"product_id": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-kf-notebook-controller-rhel9@sha256%3A52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9\u0026tag=1780393969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"product_id": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-kserve-agent-rhel9@sha256%3Ad00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-kserve-agent-rhel9\u0026tag=1780347853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"product_id": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-kserve-controller-rhel9@sha256%3Aad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-kserve-controller-rhel9\u0026tag=1780347851"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"product_id": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-kserve-router-rhel9@sha256%3A7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-kserve-router-rhel9\u0026tag=1780347854"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"product_id": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-kserve-storage-initializer-rhel9@sha256%3Aa0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9\u0026tag=1780069127"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"product_id": "registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-kuberay-operator-controller-rhel9@sha256%3Ad16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9\u0026tag=1780506757"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"product_id": "registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-llama-stack-core-rhel9@sha256%3Ad7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-llama-stack-core-rhel9\u0026tag=1780394930"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"product_id": "registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-llama-stack-k8s-operator-rhel9@sha256%3A5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9\u0026tag=1780394436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"product_id": "registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-llm-d-inference-scheduler-rhel9@sha256%3Ae55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9\u0026tag=1780069327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"product_id": "registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-llm-d-routing-sidecar-rhel9@sha256%3A54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9\u0026tag=1780069124"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-api-server-v2-rhel9@sha256%3Ad3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9\u0026tag=1780394123"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-driver-rhel9@sha256%3Adf63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9\u0026tag=1780393862"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-launcher-rhel9@sha256%3A0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9\u0026tag=1780393349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256%3A690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9\u0026tag=1780393812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-runtime-generic-rhel9@sha256%3A79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9\u0026tag=1780436255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256%3Aace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9\u0026tag=1780393322"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"product_id": "registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-mlmd-grpc-server-rhel9@sha256%3A50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9\u0026tag=1780395235"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"product_id": "registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-mm-rest-proxy-rhel9@sha256%3A4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9\u0026tag=1780069102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"product_id": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-mod-arch-model-registry-rhel9@sha256%3A707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9\u0026tag=1780467147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"product_id": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-controller-rhel9@sha256%3A290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-model-controller-rhel9\u0026tag=1780069381"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"product_id": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-metadata-collection-rhel9@sha256%3Ae1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9\u0026tag=1780069220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"product_id": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-registry-job-async-upload-rhel9@sha256%3Abb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9\u0026tag=1780434939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"product_id": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-registry-operator-rhel9@sha256%3Ae3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-model-registry-operator-rhel9\u0026tag=1780396903"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"product_id": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-registry-rhel9@sha256%3A4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-model-registry-rhel9\u0026tag=1780434700"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"product_id": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-ta-lmes-job-rhel9@sha256%3A9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9\u0026tag=1780069215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"product_id": "registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-modelmesh-runtime-adapter-rhel9@sha256%3Af9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9\u0026tag=1780394782"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"product_id": "registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-modelmesh-serving-controller-rhel9@sha256%3A0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9\u0026tag=1780069205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"product_id": "registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-modelmesh-rhel9@sha256%3A6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-modelmesh-rhel9\u0026tag=1780069506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"product_id": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-must-gather-rhel9@sha256%3Aa626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-must-gather-rhel9\u0026tag=1780069152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"product_id": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-notebook-controller-rhel9@sha256%3Af4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-notebook-controller-rhel9\u0026tag=1780394039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"product_id": "registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-openvino-model-server-rhel9@sha256%3A73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-openvino-model-server-rhel9\u0026tag=1780434492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"product_id": "registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-operator-bundle@sha256%3Ad6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-operator-bundle\u0026tag=1780514621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"product_id": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-rhel9-operator@sha256%3A96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-rhel9-operator\u0026tag=1780513840"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"product_id": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256%3Add929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9\u0026tag=1780078312"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"product_id": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256%3A739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9\u0026tag=1780069491"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"product_id": "registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256%3Af35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9\u0026tag=1780078429"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"product_id": "registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256%3Ad34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9\u0026tag=1780069222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"product_id": "registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256%3Ab75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9\u0026tag=1780078632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"product_id": "registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256%3Aa0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9\u0026tag=1780078416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"product_id": "registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256%3A4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9\u0026tag=1780417775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"product_id": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-ta-lmes-driver-rhel9@sha256%3A998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9\u0026tag=1780069144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"product_id": "registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-training-cuda121-torch24-py311-rhel9@sha256%3Ad12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9\u0026tag=1780078807"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"product_id": "registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-training-cuda124-torch25-py311-rhel9@sha256%3Ae6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9\u0026tag=1780078840"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"product_id": "registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-training-operator-rhel9@sha256%3Aec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-training-operator-rhel9\u0026tag=1780395771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"product_id": "registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-training-rocm62-torch24-py311-rhel9@sha256%3A8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9\u0026tag=1780069179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"product_id": "registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-training-rocm62-torch25-py311-rhel9@sha256%3A1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9\u0026tag=1780069181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"product_id": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-trustyai-service-operator-rhel9@sha256%3A91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9\u0026tag=1780069183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"product_id": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-trustyai-service-rhel9@sha256%3Ae4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-trustyai-service-rhel9\u0026tag=1780398350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"product_id": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256%3Ad127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9\u0026tag=1780069144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"product_id": "registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-vllm-cuda-rhel9@sha256%3Ac8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-vllm-cuda-rhel9\u0026tag=1780069320"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"product_id": "registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-vllm-gaudi-rhel9@sha256%3A281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9\u0026tag=1780069069"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"product_id": "registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-vllm-rocm-rhel9@sha256%3A0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-vllm-rocm-rhel9\u0026tag=1780069849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"product_id": "registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256%3A546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9\u0026tag=1780078388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256%3A128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9\u0026tag=1780069146"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256%3A516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9\u0026tag=1780069205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256%3A5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9\u0026tag=1780069224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256%3Aa041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9\u0026tag=1780069470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256%3A437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9\u0026tag=1780078413"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256%3A2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9\u0026tag=1780069226"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256%3A5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9\u0026tag=1780078629"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256%3Addcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9\u0026tag=1780078414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256%3A3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9\u0026tag=1780078632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256%3A3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5?arch=amd64\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9\u0026tag=1780069222"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"product_id": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-built-in-detector-rhel9@sha256%3Ad8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-built-in-detector-rhel9\u0026tag=1780069183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"product_id": "registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-caikit-nlp-rhel9@sha256%3A22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-caikit-nlp-rhel9\u0026tag=1780069094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"product_id": "registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-caikit-tgis-serving-rhel9@sha256%3A34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9\u0026tag=1780388133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"product_id": "registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-codeflare-operator-rhel9@sha256%3A90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-codeflare-operator-rhel9\u0026tag=1780393157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"product_id": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-dashboard-rhel9@sha256%3A0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-dashboard-rhel9\u0026tag=1780467029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"product_id": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-data-science-pipelines-argo-argoexec-rhel9@sha256%3A318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9\u0026tag=1780393223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"product_id": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256%3Add77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9\u0026tag=1780392871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"product_id": "registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-data-science-pipelines-operator-controller-rhel9@sha256%3A2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9\u0026tag=1780392570"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"product_id": "registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-feast-operator-rhel9@sha256%3A2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-feast-operator-rhel9\u0026tag=1780069293"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"product_id": "registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-feature-server-rhel9@sha256%3Ad81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-feature-server-rhel9\u0026tag=1780069135"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"product_id": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-fms-guardrails-orchestrator-rhel9@sha256%3Af9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9\u0026tag=1780069197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"product_id": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-guardrails-detector-huggingface-runtime-rhel9@sha256%3Aaca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9\u0026tag=1780069122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"product_id": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-kf-notebook-controller-rhel9@sha256%3A4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9\u0026tag=1780393969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"product_id": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-kserve-agent-rhel9@sha256%3A66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-kserve-agent-rhel9\u0026tag=1780347853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"product_id": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-kserve-controller-rhel9@sha256%3Ab8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-kserve-controller-rhel9\u0026tag=1780347851"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"product_id": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-kserve-router-rhel9@sha256%3Ad830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-kserve-router-rhel9\u0026tag=1780347854"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"product_id": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-kserve-storage-initializer-rhel9@sha256%3Ac875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9\u0026tag=1780069127"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"product_id": "registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-kuberay-operator-controller-rhel9@sha256%3Af8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9\u0026tag=1780506757"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"product_id": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-kueue-controller-rhel9@sha256%3A909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-kueue-controller-rhel9\u0026tag=1780393069"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"product_id": "registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-llama-stack-core-rhel9@sha256%3A51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-llama-stack-core-rhel9\u0026tag=1780394930"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"product_id": "registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-llama-stack-k8s-operator-rhel9@sha256%3Afd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9\u0026tag=1780394436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"product_id": "registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-llm-d-inference-scheduler-rhel9@sha256%3Afb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9\u0026tag=1780069327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"product_id": "registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-llm-d-routing-sidecar-rhel9@sha256%3A0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9\u0026tag=1780069124"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-api-server-v2-rhel9@sha256%3A4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9\u0026tag=1780394123"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-driver-rhel9@sha256%3A38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9\u0026tag=1780393862"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-launcher-rhel9@sha256%3A0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9\u0026tag=1780393349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256%3Ad6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9\u0026tag=1780393812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-runtime-generic-rhel9@sha256%3Af7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9\u0026tag=1780436255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256%3A7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9\u0026tag=1780393322"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"product_id": "registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-mlmd-grpc-server-rhel9@sha256%3Accd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9\u0026tag=1780395235"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"product_id": "registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-mm-rest-proxy-rhel9@sha256%3A6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9\u0026tag=1780069102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"product_id": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-mod-arch-model-registry-rhel9@sha256%3A560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9\u0026tag=1780467147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"product_id": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-controller-rhel9@sha256%3Aed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-model-controller-rhel9\u0026tag=1780069381"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"product_id": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-metadata-collection-rhel9@sha256%3Afce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9\u0026tag=1780069220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"product_id": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-registry-job-async-upload-rhel9@sha256%3A60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9\u0026tag=1780434939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"product_id": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-registry-operator-rhel9@sha256%3A9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-model-registry-operator-rhel9\u0026tag=1780396903"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"product_id": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-registry-rhel9@sha256%3Ae3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-model-registry-rhel9\u0026tag=1780434700"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"product_id": "registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-modelmesh-runtime-adapter-rhel9@sha256%3Abab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9\u0026tag=1780394782"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"product_id": "registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-modelmesh-serving-controller-rhel9@sha256%3Aa7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9\u0026tag=1780069205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"product_id": "registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-modelmesh-rhel9@sha256%3A547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-modelmesh-rhel9\u0026tag=1780069506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"product_id": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-must-gather-rhel9@sha256%3Ae0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-must-gather-rhel9\u0026tag=1780069152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"product_id": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-notebook-controller-rhel9@sha256%3Acf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-notebook-controller-rhel9\u0026tag=1780394039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"product_id": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-rhel9-operator@sha256%3Ab46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-rhel9-operator\u0026tag=1780513840"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"product_id": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-ta-lmes-job-rhel9@sha256%3A3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9\u0026tag=1780069215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"product_id": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256%3Adea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9\u0026tag=1780078312"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"product_id": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256%3A3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9\u0026tag=1780069491"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"product_id": "registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256%3A90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9\u0026tag=1780078416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"product_id": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-ta-lmes-driver-rhel9@sha256%3Ac283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9\u0026tag=1780069144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"product_id": "registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-training-operator-rhel9@sha256%3A72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-training-operator-rhel9\u0026tag=1780395771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"product_id": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-trustyai-service-operator-rhel9@sha256%3A38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9\u0026tag=1780069183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"product_id": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-trustyai-service-rhel9@sha256%3A4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-trustyai-service-rhel9\u0026tag=1780398350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"product_id": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256%3Aafeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9\u0026tag=1780069144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"product_id": "registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-vllm-cuda-rhel9@sha256%3A1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-vllm-cuda-rhel9\u0026tag=1780069320"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"product_id": "registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256%3A337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9\u0026tag=1780078388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256%3A8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9\u0026tag=1780069146"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256%3Ad2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9\u0026tag=1780069205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256%3Ac7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9\u0026tag=1780069224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256%3A1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9\u0026tag=1780078414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256%3A08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21?arch=arm64\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9\u0026tag=1780069222"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-built-in-detector-rhel9@sha256%3Ac862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-built-in-detector-rhel9\u0026tag=1780069183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-dashboard-rhel9@sha256%3A2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-dashboard-rhel9\u0026tag=1780467029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-data-science-pipelines-argo-argoexec-rhel9@sha256%3A43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9\u0026tag=1780393223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256%3A809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9\u0026tag=1780392871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-data-science-pipelines-operator-controller-rhel9@sha256%3Ae299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9\u0026tag=1780392570"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-feast-operator-rhel9@sha256%3Aad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-feast-operator-rhel9\u0026tag=1780069293"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-feature-server-rhel9@sha256%3Ae7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-feature-server-rhel9\u0026tag=1780069135"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-fms-guardrails-orchestrator-rhel9@sha256%3A4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9\u0026tag=1780069197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-guardrails-detector-huggingface-runtime-rhel9@sha256%3A1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9\u0026tag=1780069122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-kf-notebook-controller-rhel9@sha256%3A79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9\u0026tag=1780393969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-kserve-agent-rhel9@sha256%3A913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-kserve-agent-rhel9\u0026tag=1780347853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-kserve-controller-rhel9@sha256%3A5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-kserve-controller-rhel9\u0026tag=1780347851"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-kserve-router-rhel9@sha256%3Aa2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-kserve-router-rhel9\u0026tag=1780347854"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-kserve-storage-initializer-rhel9@sha256%3A63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9\u0026tag=1780069127"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-kueue-controller-rhel9@sha256%3Aa62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-kueue-controller-rhel9\u0026tag=1780393069"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-api-server-v2-rhel9@sha256%3A1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9\u0026tag=1780394123"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-driver-rhel9@sha256%3A455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9\u0026tag=1780393862"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-launcher-rhel9@sha256%3Adef7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9\u0026tag=1780393349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256%3Ab8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9\u0026tag=1780393812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-runtime-generic-rhel9@sha256%3Aa27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9\u0026tag=1780436255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256%3A009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9\u0026tag=1780393322"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-mlmd-grpc-server-rhel9@sha256%3A932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9\u0026tag=1780395235"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-mod-arch-model-registry-rhel9@sha256%3A7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9\u0026tag=1780467147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-controller-rhel9@sha256%3A89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-model-controller-rhel9\u0026tag=1780069381"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-metadata-collection-rhel9@sha256%3Acc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9\u0026tag=1780069220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-registry-job-async-upload-rhel9@sha256%3Aff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9\u0026tag=1780434939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-registry-operator-rhel9@sha256%3Aef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-model-registry-operator-rhel9\u0026tag=1780396903"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-registry-rhel9@sha256%3A5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-model-registry-rhel9\u0026tag=1780434700"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-must-gather-rhel9@sha256%3A773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-must-gather-rhel9\u0026tag=1780069152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-notebook-controller-rhel9@sha256%3Ac0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-notebook-controller-rhel9\u0026tag=1780394039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-rhel9-operator@sha256%3Ab555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-rhel9-operator\u0026tag=1780513840"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256%3A4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9\u0026tag=1780078312"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256%3A58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9\u0026tag=1780069491"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-ta-lmes-driver-rhel9@sha256%3A60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9\u0026tag=1780069144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-ta-lmes-job-rhel9@sha256%3A33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9\u0026tag=1780069215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-training-operator-rhel9@sha256%3A8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-training-operator-rhel9\u0026tag=1780395771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-trustyai-service-operator-rhel9@sha256%3Ac8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9\u0026tag=1780069183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-trustyai-service-rhel9@sha256%3A62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-trustyai-service-rhel9\u0026tag=1780398350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256%3A1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9\u0026tag=1780069144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-vllm-cpu-rhel9@sha256%3Ad6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-vllm-cpu-rhel9\u0026tag=1780069252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256%3Ad8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9\u0026tag=1780078388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256%3A82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9\u0026tag=1780069146"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256%3Ae059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9\u0026tag=1780069205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256%3A3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf?arch=ppc64le\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9\u0026tag=1780069222"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"product_id": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-built-in-detector-rhel9@sha256%3A95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-built-in-detector-rhel9\u0026tag=1780069183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"product_id": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-dashboard-rhel9@sha256%3A34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-dashboard-rhel9\u0026tag=1780467029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"product_id": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-fms-guardrails-orchestrator-rhel9@sha256%3A568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9\u0026tag=1780069197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"product_id": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-guardrails-detector-huggingface-runtime-rhel9@sha256%3A19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9\u0026tag=1780069122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"product_id": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-kf-notebook-controller-rhel9@sha256%3A814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9\u0026tag=1780393969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"product_id": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-kserve-agent-rhel9@sha256%3A12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-kserve-agent-rhel9\u0026tag=1780347853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"product_id": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-kserve-controller-rhel9@sha256%3A3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-kserve-controller-rhel9\u0026tag=1780347851"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"product_id": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-kserve-router-rhel9@sha256%3Aa3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-kserve-router-rhel9\u0026tag=1780347854"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"product_id": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-kserve-storage-initializer-rhel9@sha256%3A41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9\u0026tag=1780069127"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"product_id": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-kueue-controller-rhel9@sha256%3A6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-kueue-controller-rhel9\u0026tag=1780393069"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"product_id": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-mod-arch-model-registry-rhel9@sha256%3A91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9\u0026tag=1780467147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"product_id": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-controller-rhel9@sha256%3A47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-model-controller-rhel9\u0026tag=1780069381"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"product_id": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-metadata-collection-rhel9@sha256%3Abfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9\u0026tag=1780069220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"product_id": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-registry-job-async-upload-rhel9@sha256%3A017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9\u0026tag=1780434939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"product_id": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-registry-operator-rhel9@sha256%3A792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-model-registry-operator-rhel9\u0026tag=1780396903"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"product_id": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-model-registry-rhel9@sha256%3A7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-model-registry-rhel9\u0026tag=1780434700"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"product_id": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-must-gather-rhel9@sha256%3Ad65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-must-gather-rhel9\u0026tag=1780069152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"product_id": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-notebook-controller-rhel9@sha256%3A6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-notebook-controller-rhel9\u0026tag=1780394039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"product_id": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-rhel9-operator@sha256%3Af581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-rhel9-operator\u0026tag=1780513840"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"product_id": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256%3A741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9\u0026tag=1780078312"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"product_id": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256%3A0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9\u0026tag=1780069491"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"product_id": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-ta-lmes-driver-rhel9@sha256%3A860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9\u0026tag=1780069144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"product_id": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-ta-lmes-job-rhel9@sha256%3A15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9\u0026tag=1780069215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"product_id": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-trustyai-service-operator-rhel9@sha256%3Ab26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9\u0026tag=1780069183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"product_id": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-trustyai-service-rhel9@sha256%3A9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-trustyai-service-rhel9\u0026tag=1780398350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"product_id": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256%3A508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9\u0026tag=1780069144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"product_id": "registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-vllm-cpu-rhel9@sha256%3Ad4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-vllm-cpu-rhel9\u0026tag=1780069252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256%3A31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9\u0026tag=1780069146"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"product": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"product_id": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256%3A776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb?arch=s390x\u0026repository_url=registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9\u0026tag=1780069205"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64 as a component of Red Hat OpenShift AI 2.25",
"product_id": "Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
},
"product_reference": "registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64",
"relates_to_product_reference": "Red Hat OpenShift AI 2.25"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-14813",
"cwe": {
"id": "CWE-327",
"name": "Use of a Broken or Risky Cryptographic Algorithm"
},
"discovery_date": "2026-04-15T10:01:27.769752+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458640"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Legion of the Bouncy Castle Inc. BC-JAVA bcprov. The `GOSTCTR` implementation is unable to securely process more than 255 blocks of data due to keystream reuse. This issue allows an attacker to break the fundamental confidentiality of any data protected by the `G3413CTRBlockCipher`, potentially leading to the recovery and access of encrypted data.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "bouncycastle: BC-JAVA: GOSTCTR implementation unable to process more than 255 blocks correctly",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker needs to capture ciphertext encrypted by the `GOSTCTR` implementation where the `G3413CTRBlockCipher` processed more than 255 blocks of data, resulting in keystream reuse. An attack typically requires capturing these overlapping ciphertexts to perform cryptanalysis and uncover the underlying data.\nThe primary impact of this vulnerability is the potential loss of confidentiality for data encrypted by the `GOSTCTR` implementation. This can compromise encrypted communications or sensitive stored data by allowing an attacker to fully recover the plaintext.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-14813"
},
{
"category": "external",
"summary": "RHBZ#2458640",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458640"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-14813",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-14813"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-14813",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-14813"
},
{
"category": "external",
"summary": "https://github.com/bcgit/bc-java/wiki/CVE%E2%80%902025%E2%80%9014813",
"url": "https://github.com/bcgit/bc-java/wiki/CVE%E2%80%902025%E2%80%9014813"
}
],
"release_date": "2026-04-15T08:56:34.057000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, strictly limit the payload encrypted under a single key and Initialization Vector (IV) pair using the GOSTCTR implementation and G3413CTRBlockCipher to a maximum of 255 blocks. Alternatively, transition to a more secure, standardized and authenticated encryption mode.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "bouncycastle: BC-JAVA: GOSTCTR implementation unable to process more than 255 blocks correctly"
},
{
"cve": "CVE-2025-48956",
"cwe": {
"id": "CWE-130",
"name": "Improper Handling of Length Parameter Inconsistency"
},
"discovery_date": "2025-06-12T17:02:11.238000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2372522"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in vLLM. A denial of service (DoS) vulnerability can be triggered by sending a single HTTP GET request with an extremely large X-Forwarded-For header to an HTTP endpoint. This results in server memory exhaustion, potentially leading to a crash or unresponsiveness. The attack does not require authentication, making it exploitable by any remote user.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "vllm: HTTP header size limit not enforced allows Denial of Service from Unauthenticated requests",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is considered Important rather than just Moderate because it enables a complete denial of service with minimal effort from a remote, unauthenticated attacker. Unlike moderate flaws that might require specific conditions, partial access, or complex exploitation chains, here a single oversized HTTP request is sufficient to exhaust server memory and crash the vLLM service. Since vLLM is often deployed as a backend for high-availability inference workloads, this creates a high-impact risk: availability is entirely compromised, all running workloads are disrupted, and recovery may require manual intervention. The lack of authentication barriers makes the attack surface fully exposed over the network, which elevates the severity beyond Moderate to Important.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-48956"
},
{
"category": "external",
"summary": "RHBZ#2372522",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2372522"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-48956",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-48956"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-48956",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-48956"
},
{
"category": "external",
"summary": "https://github.com/vllm-project/vllm/commit/d8b736f913a59117803d6701521d2e4861701944",
"url": "https://github.com/vllm-project/vllm/commit/d8b736f913a59117803d6701521d2e4861701944"
},
{
"category": "external",
"summary": "https://github.com/vllm-project/vllm/security/advisories/GHSA-rxc4-3w6r-4v47",
"url": "https://github.com/vllm-project/vllm/security/advisories/GHSA-rxc4-3w6r-4v47"
}
],
"release_date": "2025-08-26T14:51:41.716000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Until a fix is available, the risk can be reduced by running vLLM behind a reverse proxy such as Nginx, Envoy, or HAProxy with strict header size limits, ensuring that oversized requests are dropped before reaching the service. Additional safeguards like container or VM resource limits and traffic monitoring can help contain the impact, but upgrading to the patched release remains the definitive solution.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "vllm: HTTP header size limit not enforced allows Denial of Service from Unauthenticated requests"
},
{
"cve": "CVE-2025-61726",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-28T20:01:42.791305+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434432"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: net/url: Memory exhaustion in query parameter parsing in net/url",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker must be able to send a specially crafted HTTP request to an application parsing URL-encoded forms with net/url, specifically a request containing a large number of unique query parameters. The request will cause the application to consume an excessive amount of memory and eventually result in a denial of service, with no impact to confidentiality or integrity. Due to this reason, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "RHBZ#2434432",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434432"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61726",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61726"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://go.dev/cl/736712",
"url": "https://go.dev/cl/736712"
},
{
"category": "external",
"summary": "https://go.dev/issue/77101",
"url": "https://go.dev/issue/77101"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc",
"url": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4341",
"url": "https://pkg.go.dev/vuln/GO-2026-4341"
}
],
"release_date": "2026-01-28T19:30:31.215000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Red Hat has investigated whether a possible mitigation exists for this issue, and has not been able to identify a practical example. Please update the affected package as soon as possible.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang: net/url: Memory exhaustion in query parameter parsing in net/url"
},
{
"cve": "CVE-2025-62718",
"cwe": {
"id": "CWE-1289",
"name": "Improper Validation of Unsafe Equivalence in Input"
},
"discovery_date": "2026-04-09T15:01:48.111177+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456913"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client. This vulnerability occurs because Axios does not correctly handle hostname normalization when evaluating NO_PROXY rules. An attacker can exploit this by crafting requests to loopback addresses (e.g., localhost. or [::1]) which bypass the NO_PROXY configuration and are routed through the configured proxy. This can lead to Server-Side Request Forgery (SSRF) vulnerabilities, enabling attackers to access sensitive internal or loopback services that should otherwise be protected.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Server-Side Request Forgery and proxy bypass due to improper hostname normalization",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw has limited impact due to combination of non-default conditions to exploit: the attacker must be able to control or influence URLs passed to axios in a server-side context, the application must have both `HTTP_PROXY` and `NO_PROXY` configured, and the proxy itself must be positioned to act on the misdirected traffic or have been compromised by the attacker to intercept the rerouted traffic.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-62718"
},
{
"category": "external",
"summary": "RHBZ#2456913",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456913"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-62718",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-62718"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-62718",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-62718"
},
{
"category": "external",
"summary": "https://datatracker.ietf.org/doc/html/rfc1034#section-3.1",
"url": "https://datatracker.ietf.org/doc/html/rfc1034#section-3.1"
},
{
"category": "external",
"summary": "https://datatracker.ietf.org/doc/html/rfc3986#section-3.2.2",
"url": "https://datatracker.ietf.org/doc/html/rfc3986#section-3.2.2"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/commit/fb3befb6daac6cad26b2e54094d0f2d9e47f24df",
"url": "https://github.com/axios/axios/commit/fb3befb6daac6cad26b2e54094d0f2d9e47f24df"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/pull/10661",
"url": "https://github.com/axios/axios/pull/10661"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/releases/tag/v1.15.0",
"url": "https://github.com/axios/axios/releases/tag/v1.15.0"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-3p68-rc4w-qgx5",
"url": "https://github.com/axios/axios/security/advisories/GHSA-3p68-rc4w-qgx5"
}
],
"release_date": "2026-04-09T14:31:46.067000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Server-Side Request Forgery and proxy bypass due to improper hostname normalization"
},
{
"cve": "CVE-2025-69227",
"cwe": {
"id": "CWE-835",
"name": "Loop with Unreachable Exit Condition (\u0027Infinite Loop\u0027)"
},
"discovery_date": "2026-01-06T00:01:17.036900+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2427256"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in aiohttp, an asynchronous HTTP client/server framework for Python. A remote attacker could exploit this vulnerability by sending a specially crafted POST request to an application using the Request.post() method, provided that Python optimizations are enabled. This could lead to an infinite loop, resulting in a Denial of Service (DoS) attack, making the affected application unavailable.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "aiohttp: aiohttp: Denial of Service via specially crafted POST request",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Moderate for Red Hat products as it can lead to a Denial of Service (DoS) in applications utilizing the `aiohttp` library. Exploitation requires Python optimizations to be explicitly enabled (e.g., via `-O` or `PYTHONOPTIMIZE=1`) and the application to process POST requests using the `Request.post()` method. Red Hat products are affected if they meet these specific configuration and usage criteria.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69227"
},
{
"category": "external",
"summary": "RHBZ#2427256",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2427256"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69227",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69227"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69227",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69227"
},
{
"category": "external",
"summary": "https://github.com/aio-libs/aiohttp/commit/bc1319ec3cbff9438a758951a30907b072561259",
"url": "https://github.com/aio-libs/aiohttp/commit/bc1319ec3cbff9438a758951a30907b072561259"
},
{
"category": "external",
"summary": "https://github.com/aio-libs/aiohttp/security/advisories/GHSA-jj3x-wxrx-4x23",
"url": "https://github.com/aio-libs/aiohttp/security/advisories/GHSA-jj3x-wxrx-4x23"
}
],
"release_date": "2026-01-05T23:19:31.396000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "No mitigation is currently available that meets Red Hat Product Security\u2019s standards for usability, deployment, applicability, or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "aiohttp: aiohttp: Denial of Service via specially crafted POST request"
},
{
"cve": "CVE-2025-69228",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-06T00:01:02.119065+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2427254"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in aiohttp. A remote attacker can craft a malicious request that, when processed by an aiohttp server using the `Request.post()` method, causes the server\u0027s memory to fill uncontrollably. This can lead to a Denial of Service (DoS) by freezing the server, making it unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "aiohttp: aiohttp: Denial of Service via memory exhaustion from crafted POST request",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Moderate for Red Hat products. A flaw in aiohttp allows a remote attacker to cause a Denial of Service (DoS) by sending a specially crafted POST request to an aiohttp server that utilizes the `Request.post()` method. This can lead to uncontrolled memory consumption, freezing the server and making the server unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69228"
},
{
"category": "external",
"summary": "RHBZ#2427254",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2427254"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69228",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69228"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69228",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69228"
},
{
"category": "external",
"summary": "https://github.com/aio-libs/aiohttp/commit/b7dbd35375aedbcd712cbae8ad513d56d11cce60",
"url": "https://github.com/aio-libs/aiohttp/commit/b7dbd35375aedbcd712cbae8ad513d56d11cce60"
},
{
"category": "external",
"summary": "https://github.com/aio-libs/aiohttp/security/advisories/GHSA-6jhg-hg63-jvvf",
"url": "https://github.com/aio-libs/aiohttp/security/advisories/GHSA-6jhg-hg63-jvvf"
}
],
"release_date": "2026-01-05T23:30:33.440000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "No mitigation is currently available that meets Red Hat Product Security\u2019s standards for usability, deployment, applicability, or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.8,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "aiohttp: aiohttp: Denial of Service via memory exhaustion from crafted POST request"
},
{
"cve": "CVE-2026-1462",
"cwe": {
"id": "CWE-502",
"name": "Deserialization of Untrusted Data"
},
"discovery_date": "2026-04-13T15:02:12.634661+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457856"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `keras` package. This vulnerability allows an attacker to execute unauthorized code on a victim\u0027s system. It occurs when a victim loads a specially crafted `.keras` model, even if the `safe_mode` security feature is active. The issue arises because the `keras` package can unconditionally load external TensorFlow SavedModels without sufficient validation, thereby bypassing the intended security protections and leading to arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "keras: Keras: Arbitrary Code Execution Vulnerability Bypassing Safe Mode",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-1462"
},
{
"category": "external",
"summary": "RHBZ#2457856",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457856"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-1462",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-1462"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-1462",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-1462"
},
{
"category": "external",
"summary": "https://github.com/keras-team/keras/commit/b6773d3decaef1b05d8e794458e148cb362f163f",
"url": "https://github.com/keras-team/keras/commit/b6773d3decaef1b05d8e794458e148cb362f163f"
},
{
"category": "external",
"summary": "https://huntr.com/bounties/7e78d6f1-6977-4300-b595-e81bdbda331c",
"url": "https://huntr.com/bounties/7e78d6f1-6977-4300-b595-e81bdbda331c"
}
],
"release_date": "2026-04-13T14:55:28.649000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "keras: Keras: Arbitrary Code Execution Vulnerability Bypassing Safe Mode"
},
{
"cve": "CVE-2026-4800",
"cwe": {
"id": "CWE-94",
"name": "Improper Control of Generation of Code (\u0027Code Injection\u0027)"
},
"discovery_date": "2026-03-31T20:01:21.918257+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2453496"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in lodash. The fix for CVE-2021-23337 added validation for the variable option in _.template but did not apply the same validation to options.imports key names. Both paths flow into the same Function() constructor sink. Additionally, _.template uses assignInWith to merge imports, which enumerates inherited properties via for..in. If Object.prototype has been polluted by any other vector, the polluted keys are copied into the imports object and passed to Function().",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "lodash: lodash: Arbitrary code execution via untrusted input in template imports",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "In the context of Red Hat Enterprise Linux, the grafana and grafana-pcp packages execute the affected JavaScript entirely client-side within the user\u0027s browser. Consequently, the attack surface is strictly restricted to the local browser environment.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4800"
},
{
"category": "external",
"summary": "RHBZ#2453496",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2453496"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4800",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4800"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4800",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4800"
},
{
"category": "external",
"summary": "https://cna.openjsf.org/security-advisories.html",
"url": "https://cna.openjsf.org/security-advisories.html"
},
{
"category": "external",
"summary": "https://github.com/advisories/GHSA-35jh-r3h4-6jhm",
"url": "https://github.com/advisories/GHSA-35jh-r3h4-6jhm"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c",
"url": "https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c"
}
],
"release_date": "2026-03-31T19:25:55.987000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "lodash: lodash: Arbitrary code execution via untrusted input in template imports"
},
{
"cve": "CVE-2026-6321",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-05-04T20:01:14.938426+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2466582"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in fast-uri. A remote attacker could exploit this vulnerability by providing a specially crafted Uniform Resource Locator (URL) containing percent-encoded path separators and dot segments. Due to incorrect processing, fast-uri would decode these elements before proper normalization, leading to distinct URLs resolving to the same internal path. This could allow an attacker to bypass security policies that rely on path-based comparisons, potentially gaining unauthorized access to resources.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "fast-uri: fast-uri: Path traversal vulnerability allows bypass of security policies",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-6321"
},
{
"category": "external",
"summary": "RHBZ#2466582",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2466582"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-6321",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-6321"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-6321",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-6321"
},
{
"category": "external",
"summary": "https://cna.openjsf.org/security-advisories.html",
"url": "https://cna.openjsf.org/security-advisories.html"
},
{
"category": "external",
"summary": "https://github.com/fastify/fast-uri/security/advisories/GHSA-q3j6-qgpj-74h6",
"url": "https://github.com/fastify/fast-uri/security/advisories/GHSA-q3j6-qgpj-74h6"
}
],
"release_date": "2026-05-04T19:31:57.253000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "fast-uri: fast-uri: Path traversal vulnerability allows bypass of security policies"
},
{
"cve": "CVE-2026-23490",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-16T20:03:33.790513+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430472"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in pyasn1, a generic ASN.1 library for Python. A remote attacker could exploit this vulnerability by sending a specially crafted RELATIVE-OID with excessive continuation octets. This input validation vulnerability leads to memory exhaustion, resulting in a Denial of Service (DoS) for the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "pyasn1: pyasn1: Denial of Service due to memory exhaustion from malformed RELATIVE-OID",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-23490"
},
{
"category": "external",
"summary": "RHBZ#2430472",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430472"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-23490",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-23490"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-23490",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-23490"
},
{
"category": "external",
"summary": "https://github.com/pyasn1/pyasn1/commit/3908f144229eed4df24bd569d16e5991ace44970",
"url": "https://github.com/pyasn1/pyasn1/commit/3908f144229eed4df24bd569d16e5991ace44970"
},
{
"category": "external",
"summary": "https://github.com/pyasn1/pyasn1/releases/tag/v0.6.2",
"url": "https://github.com/pyasn1/pyasn1/releases/tag/v0.6.2"
},
{
"category": "external",
"summary": "https://github.com/pyasn1/pyasn1/security/advisories/GHSA-63vm-454h-vhhq",
"url": "https://github.com/pyasn1/pyasn1/security/advisories/GHSA-63vm-454h-vhhq"
}
],
"release_date": "2026-01-16T19:03:36.442000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "pyasn1: pyasn1: Denial of Service due to memory exhaustion from malformed RELATIVE-OID"
},
{
"cve": "CVE-2026-24747",
"cwe": {
"id": "CWE-502",
"name": "Deserialization of Untrusted Data"
},
"discovery_date": "2026-01-27T22:01:52.649884+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2433612"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in PyTorch, a Python package for tensor computation. A remote attacker could craft a malicious checkpoint file, which, when loaded using the `weights_only` unpickler, could lead to memory corruption. This vulnerability may enable an attacker to achieve arbitrary code execution on the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "pytorch: PyTorch: Arbitrary code execution via malicious checkpoint file loading",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-24747"
},
{
"category": "external",
"summary": "RHBZ#2433612",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2433612"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-24747",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-24747"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-24747",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-24747"
},
{
"category": "external",
"summary": "https://github.com/pytorch/pytorch/163122/commit/954dc5183ee9205cbe79876ad05dd2d9ae752139",
"url": "https://github.com/pytorch/pytorch/163122/commit/954dc5183ee9205cbe79876ad05dd2d9ae752139"
},
{
"category": "external",
"summary": "https://github.com/pytorch/pytorch/issues/163105",
"url": "https://github.com/pytorch/pytorch/issues/163105"
},
{
"category": "external",
"summary": "https://github.com/pytorch/pytorch/releases/tag/v2.10.0",
"url": "https://github.com/pytorch/pytorch/releases/tag/v2.10.0"
},
{
"category": "external",
"summary": "https://github.com/pytorch/pytorch/security/advisories/GHSA-63cw-57p8-fm3p",
"url": "https://github.com/pytorch/pytorch/security/advisories/GHSA-63cw-57p8-fm3p"
}
],
"release_date": "2026-01-27T21:13:46.878000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "pytorch: PyTorch: Arbitrary code execution via malicious checkpoint file loading"
},
{
"cve": "CVE-2026-25048",
"cwe": {
"id": "CWE-674",
"name": "Uncontrolled Recursion"
},
"discovery_date": "2026-03-05T16:01:14.634884+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2444840"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in xgrammar, an open-source library for structured generation. This vulnerability allows an attacker to trigger a segmentation fault, causing the program to crash and resulting in a Denial of Service (DoS). The issue occurs due to improper handling of multi-level nested syntax.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "xgrammar: xgrammar: Denial of Service via multi-level nested syntax",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25048"
},
{
"category": "external",
"summary": "RHBZ#2444840",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2444840"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25048",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25048"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25048",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25048"
},
{
"category": "external",
"summary": "https://github.com/mlc-ai/xgrammar/releases/tag/v0.1.32",
"url": "https://github.com/mlc-ai/xgrammar/releases/tag/v0.1.32"
},
{
"category": "external",
"summary": "https://github.com/mlc-ai/xgrammar/security/advisories/GHSA-7rgv-gqhr-fxg3",
"url": "https://github.com/mlc-ai/xgrammar/security/advisories/GHSA-7rgv-gqhr-fxg3"
}
],
"release_date": "2026-03-05T15:34:42.095000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "xgrammar: xgrammar: Denial of Service via multi-level nested syntax"
},
{
"cve": "CVE-2026-25960",
"cwe": {
"id": "CWE-474",
"name": "Use of Function with Inconsistent Implementations"
},
"discovery_date": "2026-03-09T22:02:05.461167+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445892"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in vLLM, an inference and serving engine for large language models (LLMs). A remote attacker can exploit this Server-Side Request Forgery (SSRF) bypass vulnerability in the `load_from_url_async` method. The flaw occurs because the URL validation and the actual HTTP request handling use different parsing libraries, leading to inconsistencies. This allows an attacker to bypass existing SSRF protections, potentially leading to the disclosure of sensitive information from internal network resources.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "vLLM: vLLM: Server-Side Request Forgery bypass via inconsistent URL parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an IMPORTANT vulnerability. The vLLM component, as used in Red Hat AI Inference Server and Red Hat OpenShift AI, is affected by a Server-Side Request Forgery (SSRF) protection bypass. This flaw allows an attacker to circumvent existing SSRF safeguards due to inconsistent URL parsing between the validation layer and the underlying HTTP client when the `load_from_url_async` method is utilized.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25960"
},
{
"category": "external",
"summary": "RHBZ#2445892",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445892"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25960",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25960"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25960",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25960"
},
{
"category": "external",
"summary": "https://github.com/vllm-project/vllm/commit/6f3b2047abd4a748e3db4a68543f8221358002c0",
"url": "https://github.com/vllm-project/vllm/commit/6f3b2047abd4a748e3db4a68543f8221358002c0"
},
{
"category": "external",
"summary": "https://github.com/vllm-project/vllm/pull/34743",
"url": "https://github.com/vllm-project/vllm/pull/34743"
},
{
"category": "external",
"summary": "https://github.com/vllm-project/vllm/security/advisories/GHSA-qh4c-xf7m-gxfc",
"url": "https://github.com/vllm-project/vllm/security/advisories/GHSA-qh4c-xf7m-gxfc"
},
{
"category": "external",
"summary": "https://github.com/vllm-project/vllm/security/advisories/GHSA-v359-jj2v-j536",
"url": "https://github.com/vllm-project/vllm/security/advisories/GHSA-v359-jj2v-j536"
}
],
"release_date": "2026-03-09T21:01:01.827000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "vLLM: vLLM: Server-Side Request Forgery bypass via inconsistent URL parsing"
},
{
"cve": "CVE-2026-27489",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-04-01T18:01:42.208947+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2453929"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Open Neural Network Exchange (ONNX), an open standard for machine learning interoperability. This path traversal vulnerability, exploitable via a symbolic link (symlink), allows an attacker to read arbitrary files located outside of the intended model or user-provided directories. This could lead to unauthorized information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "onnx: ONNX: Information Disclosure via Path Traversal Vulnerability",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This Important flaw in Open Neural Network Exchange (ONNX) affects Red Hat OpenShift AI. An attacker could exploit a path traversal vulnerability through a crafted symbolic link within an ONNX model, leading to unauthorized disclosure of files outside the model\u0027s designated directories. This risk is present when processing untrusted ONNX models.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27489"
},
{
"category": "external",
"summary": "RHBZ#2453929",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2453929"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27489",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27489"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27489",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27489"
},
{
"category": "external",
"summary": "https://github.com/onnx/onnx/commit/4755f8053928dce18a61db8fec71b69c74f786cb",
"url": "https://github.com/onnx/onnx/commit/4755f8053928dce18a61db8fec71b69c74f786cb"
},
{
"category": "external",
"summary": "https://github.com/onnx/onnx/security/advisories/GHSA-3r9x-f23j-gc73",
"url": "https://github.com/onnx/onnx/security/advisories/GHSA-3r9x-f23j-gc73"
}
],
"release_date": "2026-04-01T17:33:51.281000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.6,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "onnx: ONNX: Information Disclosure via Path Traversal Vulnerability"
},
{
"cve": "CVE-2026-27893",
"cwe": {
"id": "CWE-501",
"name": "Trust Boundary Violation"
},
"discovery_date": "2026-03-27T00:01:43.935417+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2452055"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in vLLM, an inference and serving engine for large language models (LLMs). Two model implementation files hardcode `trust_remote_code=True` when loading sub-components. This bypasses the user\u0027s explicit `--trust-remote-code=False` security opt-out, allowing a remote attacker to achieve remote code execution through malicious model repositories.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "vllm: vLLM: Remote code execution due to hardcoded trust_remote_code setting",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important vulnerability in vLLM, as shipped in Red Hat AI Inference Server and Red Hat OpenShift AI. The flaw allows remote code execution due to vLLM hardcoding `trust_remote_code=True` when loading sub-components, which bypasses the user\u0027s explicit `--trust-remote-code=False` security opt-out. This can lead to exploitation through malicious model repositories.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27893"
},
{
"category": "external",
"summary": "RHBZ#2452055",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2452055"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27893",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27893"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27893",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27893"
},
{
"category": "external",
"summary": "https://github.com/vllm-project/vllm/commit/00bd08edeee5dd4d4c13277c0114a464011acf72",
"url": "https://github.com/vllm-project/vllm/commit/00bd08edeee5dd4d4c13277c0114a464011acf72"
},
{
"category": "external",
"summary": "https://github.com/vllm-project/vllm/pull/36192",
"url": "https://github.com/vllm-project/vllm/pull/36192"
},
{
"category": "external",
"summary": "https://github.com/vllm-project/vllm/security/advisories/GHSA-7972-pg2x-xr59",
"url": "https://github.com/vllm-project/vllm/security/advisories/GHSA-7972-pg2x-xr59"
}
],
"release_date": "2026-03-26T23:56:53.579000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "vllm: vLLM: Remote code execution due to hardcoded trust_remote_code setting"
},
{
"cve": "CVE-2026-28500",
"cwe": {
"id": "CWE-829",
"name": "Inclusion of Functionality from Untrusted Control Sphere"
},
"discovery_date": "2026-03-18T02:01:35.207658+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2448518"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Open Neural Network Exchange (ONNX), an open standard for machine learning interoperability. A security control bypass exists in the `onnx.hub.load()` function due to improper logic in its repository trust verification. An attacker can exploit this by providing a malicious model, which, when loaded with the `silent=True` parameter, suppresses all security warnings. This vulnerability transforms a standard model-loading function into a vector for Zero-Interaction Supply-Chain Attacks.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "onnx: ONNX: Untrusted Model Repository Warnings Suppressed",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-28500"
},
{
"category": "external",
"summary": "RHBZ#2448518",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448518"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-28500",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-28500"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-28500",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-28500"
},
{
"category": "external",
"summary": "https://github.com/ZeroXJacks/CVEs/blob/main/2026/CVE-2026-28500.md",
"url": "https://github.com/ZeroXJacks/CVEs/blob/main/2026/CVE-2026-28500.md"
},
{
"category": "external",
"summary": "https://github.com/onnx/onnx/security/advisories/GHSA-hqmj-h5c6-369m",
"url": "https://github.com/onnx/onnx/security/advisories/GHSA-hqmj-h5c6-369m"
}
],
"release_date": "2026-03-18T01:15:07.644000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.6,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "onnx: ONNX: Untrusted Model Repository Warnings Suppressed"
},
{
"cve": "CVE-2026-28684",
"cwe": {
"id": "CWE-59",
"name": "Improper Link Resolution Before File Access (\u0027Link Following\u0027)"
},
"discovery_date": "2026-04-20T17:02:18.205732+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2459798"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in python-dotenv. A local attacker can exploit this by crafting a symbolic link, which the `set_key()` and `unset_key()` functions in python-dotenv follow when rewriting `.env` files. This can lead to the overwriting of arbitrary files on the system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python-dotenv: python-dotenv: Arbitrary file overwrite via symbolic link following",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-28684"
},
{
"category": "external",
"summary": "RHBZ#2459798",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2459798"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-28684",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-28684"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-28684",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-28684"
},
{
"category": "external",
"summary": "https://github.com/theskumar/python-dotenv/commit/790c5c02991100aa1bf41ee5330aca75edc51311",
"url": "https://github.com/theskumar/python-dotenv/commit/790c5c02991100aa1bf41ee5330aca75edc51311"
},
{
"category": "external",
"summary": "https://github.com/theskumar/python-dotenv/releases/tag/v1.2.2",
"url": "https://github.com/theskumar/python-dotenv/releases/tag/v1.2.2"
},
{
"category": "external",
"summary": "https://github.com/theskumar/python-dotenv/security/advisories/GHSA-mf9w-mj56-hr94",
"url": "https://github.com/theskumar/python-dotenv/security/advisories/GHSA-mf9w-mj56-hr94"
}
],
"release_date": "2026-04-20T16:25:12.302000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "python-dotenv: python-dotenv: Arbitrary file overwrite via symbolic link following"
},
{
"cve": "CVE-2026-29063",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-03-06T19:00:57.982727+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445291"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Immutable.js, a library for persistent immutable data structures. This vulnerability, known as Prototype Pollution, allows an attacker with low privileges to inject unwanted properties into core JavaScript object prototypes without user interaction. By manipulating specific APIs such as mergeDeep(), mergeDeepWith(), merge(), Map.toJS(), and Map.toObject(), a remote attacker could potentially execute arbitrary code or cause a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation of this vulnerability requires that an attacker is able to provide arbitrary data to clients of this library in a way that calls the affected functions with data the attacker controls. In most deployments, the ability to provide data in this fashion requires that an attacker has some degree of privileges to access the affected applications.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"category": "external",
"summary": "RHBZ#2445291",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445291"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-29063",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-29063"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw",
"url": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw"
}
],
"release_date": "2026-03-06T18:25:22.438000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution"
},
{
"cve": "CVE-2026-29074",
"cwe": {
"id": "CWE-776",
"name": "Improper Restriction of Recursive Entity References in DTDs (\u0027XML Entity Expansion\u0027)"
},
"discovery_date": "2026-03-06T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445132"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in SVGO, an SVG (Scalable Vector Graphics) Optimizer. This vulnerability allows a remote attacker to cause a Denial of Service (DoS) by submitting a specially crafted XML file. The application\u0027s failure to properly guard against XML entity expansion or recursion can lead to the Node.js process consuming excessive memory and crashing.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "svgo: SVGO: Denial of Service via XML entity expansion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-29074"
},
{
"category": "external",
"summary": "RHBZ#2445132",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445132"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-29074",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-29074"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-29074",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29074"
},
{
"category": "external",
"summary": "https://github.com/svg/svgo/security/advisories/GHSA-xpqw-6gx7-v673",
"url": "https://github.com/svg/svgo/security/advisories/GHSA-xpqw-6gx7-v673"
}
],
"release_date": "2026-03-06T07:23:05.716000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "svgo: SVGO: Denial of Service via XML entity expansion"
},
{
"cve": "CVE-2026-31958",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-03-11T20:02:00.687153+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2446765"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in tornado-python. A remote attacker can exploit this vulnerability by sending a specially crafted, very large multipart body with numerous parts. Because the parsing of these large bodies occurs synchronously on the main thread, it can consume excessive resources, leading to a denial of service (DoS) for the application.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "tornado-python: Tornado: Denial of Service via large multipart bodies",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-31958"
},
{
"category": "external",
"summary": "RHBZ#2446765",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2446765"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-31958",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-31958"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-31958",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-31958"
},
{
"category": "external",
"summary": "https://github.com/tornadoweb/tornado/security/advisories/GHSA-qjxf-f2mg-c6mc",
"url": "https://github.com/tornadoweb/tornado/security/advisories/GHSA-qjxf-f2mg-c6mc"
}
],
"release_date": "2026-03-11T19:27:23.380000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "tornado-python: Tornado: Denial of Service via large multipart bodies"
},
{
"cve": "CVE-2026-32280",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-08T02:01:19.572351+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456339"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "RHBZ#2456339",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456339"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32280",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32280"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://go.dev/cl/758320",
"url": "https://go.dev/cl/758320"
},
{
"category": "external",
"summary": "https://go.dev/issue/78282",
"url": "https://go.dev/issue/78282"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4947",
"url": "https://pkg.go.dev/vuln/GO-2026-4947"
}
],
"release_date": "2026-04-08T01:06:58.595000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building"
},
{
"cve": "CVE-2026-32597",
"cwe": {
"id": "CWE-347",
"name": "Improper Verification of Cryptographic Signature"
},
"discovery_date": "2026-03-12T22:01:29.967713+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2447194"
}
],
"notes": [
{
"category": "description",
"text": "A missing verification step has been discovered in PyJWT. PyJWT does not validate the crit (Critical) Header Parameter defined in RFC 7515 \u00a74.1.11. When a JWS token contains a crit array listing extensions that PyJWT does not understand, the library accepts the token instead of rejecting it. This violates the MUST requirement in the RFC.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "pyjwt: PyJWT accepts unknown `crit` header extensions (RFC 7515 \u00a74.1.11 MUST violation)",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32597"
},
{
"category": "external",
"summary": "RHBZ#2447194",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2447194"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32597",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32597"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32597",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32597"
},
{
"category": "external",
"summary": "https://github.com/jpadilla/pyjwt/security/advisories/GHSA-752w-5fwx-jx9f",
"url": "https://github.com/jpadilla/pyjwt/security/advisories/GHSA-752w-5fwx-jx9f"
}
],
"release_date": "2026-03-12T21:41:50.427000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "pyjwt: PyJWT accepts unknown `crit` header extensions (RFC 7515 \u00a74.1.11 MUST violation)"
},
{
"cve": "CVE-2026-32981",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-03-17T20:01:37.453284+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2448440"
}
],
"notes": [
{
"category": "description",
"text": "A path traversal flaw has been identified in Ray Dashboard in the Ray Pypi package. Due to improper validation and sanitization of user-supplied paths in the static file handling mechanism, an attacker can use traversal sequences (e.g., ../) to access files outside the intended static directory, resulting in local file disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "ray: Ray Dashboard Path Traversal Leading to Local File Disclosure",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32981"
},
{
"category": "external",
"summary": "RHBZ#2448440",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448440"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32981",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32981"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32981",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32981"
},
{
"category": "external",
"summary": "https://github.com/ray-project/ray",
"url": "https://github.com/ray-project/ray"
},
{
"category": "external",
"summary": "https://packetstorm.news/files/id/215801/",
"url": "https://packetstorm.news/files/id/215801/"
},
{
"category": "external",
"summary": "https://www.vulncheck.com/advisories/ray-dashboard-path-traversal-leading-to-local-file-disclosure",
"url": "https://www.vulncheck.com/advisories/ray-dashboard-path-traversal-leading-to-local-file-disclosure"
}
],
"release_date": "2026-03-17T19:33:50.107000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "ray: Ray Dashboard Path Traversal Leading to Local File Disclosure"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-33231",
"cwe": {
"id": "CWE-306",
"name": "Missing Authentication for Critical Function"
},
"discovery_date": "2026-03-20T23:02:37.298405+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449836"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NLTK (Natural Language Toolkit), specifically in the `nltk.app.wordnet_app` component. An unauthenticated remote attacker can exploit this vulnerability by sending a specially crafted GET request to the local WordNet Browser HTTP server when it is running in its default configuration. This action causes the server process to terminate immediately, leading to a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "nltk: NLTK: Denial of Service via unauthenticated remote shutdown",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "IMPORTANT: This flaw allows an unauthenticated remote attacker to cause a denial of service in Red Hat products utilizing the NLTK WordNet Browser HTTP server. The vulnerability is exploitable when the server is running in its default configuration, allowing a specially crafted GET request to terminate the process.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33231"
},
{
"category": "external",
"summary": "RHBZ#2449836",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449836"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33231",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33231"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33231",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33231"
},
{
"category": "external",
"summary": "https://github.com/nltk/nltk/commit/bbaae83db86a0f49e00f5b0db44a7254c268de9b",
"url": "https://github.com/nltk/nltk/commit/bbaae83db86a0f49e00f5b0db44a7254c268de9b"
},
{
"category": "external",
"summary": "https://github.com/nltk/nltk/security/advisories/GHSA-jm6w-m3j8-898g",
"url": "https://github.com/nltk/nltk/security/advisories/GHSA-jm6w-m3j8-898g"
}
],
"release_date": "2026-03-20T22:45:40.784000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, ensure that the NLTK WordNet Browser HTTP server (`nltk.app.wordnet_app`) is not exposed to untrusted networks. If the WordNet Browser functionality is not required, disable or remove the component. For deployments where the server is necessary, configure firewall rules to restrict access to trusted hosts only. A service restart may be required for changes to take effect.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "nltk: NLTK: Denial of Service via unauthenticated remote shutdown"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
},
{
"cve": "CVE-2026-34993",
"cwe": {
"id": "CWE-502",
"name": "Deserialization of Untrusted Data"
},
"discovery_date": "2026-06-02T20:01:12.690409+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2484099"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in AIOHTTP, an asynchronous HTTP client/server framework for asyncio and Python. An attacker could exploit this vulnerability by providing untrusted input to the `CookieJar.load()` function. This could potentially lead to arbitrary code execution, allowing the attacker to run malicious code on the affected system. This issue is most likely to occur in applications that allow attacker-controlled files to be loaded.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "aiohttp: AIOHTTP: Arbitrary code execution via untrusted input to CookieJar.load()",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34993"
},
{
"category": "external",
"summary": "RHBZ#2484099",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2484099"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34993",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34993"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34993",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34993"
},
{
"category": "external",
"summary": "https://github.com/aio-libs/aiohttp/commit/dcf40f30637e8752c76781cf6703b5a236749a00",
"url": "https://github.com/aio-libs/aiohttp/commit/dcf40f30637e8752c76781cf6703b5a236749a00"
},
{
"category": "external",
"summary": "https://github.com/aio-libs/aiohttp/security/advisories/GHSA-jg22-mg44-37j8",
"url": "https://github.com/aio-libs/aiohttp/security/advisories/GHSA-jg22-mg44-37j8"
}
],
"release_date": "2026-06-02T18:29:15.847000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "HIGH",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:H/UI:R/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "aiohttp: AIOHTTP: Arbitrary code execution via untrusted input to CookieJar.load()"
},
{
"cve": "CVE-2026-39892",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-08T22:00:59.416053+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456735"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the cryptography library. This vulnerability occurs when a non-contiguous buffer is passed to certain application programming interfaces (APIs) that accept Python buffers, such as Hash.update(). A remote attacker could exploit this to cause a buffer overflow, potentially leading to a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cryptography: Cryptography: Buffer overflow via non-contiguous buffer in API",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "In default configurations Red Hat products isolate service processes from total system access. Should an attacker be able to exploit this vulnerability their impact will be limited to that service account and they will not have access to the broader system.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-39892"
},
{
"category": "external",
"summary": "RHBZ#2456735",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456735"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-39892",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-39892"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-39892",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-39892"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/08/12",
"url": "http://www.openwall.com/lists/oss-security/2026/04/08/12"
},
{
"category": "external",
"summary": "https://github.com/pyca/cryptography/commit/622d672e429a7cff836a23c5903683dbec1901f5",
"url": "https://github.com/pyca/cryptography/commit/622d672e429a7cff836a23c5903683dbec1901f5"
},
{
"category": "external",
"summary": "https://github.com/pyca/cryptography/security/advisories/GHSA-p423-j2cm-9vmq",
"url": "https://github.com/pyca/cryptography/security/advisories/GHSA-p423-j2cm-9vmq"
}
],
"release_date": "2026-04-08T20:49:41.967000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "cryptography: Cryptography: Buffer overflow via non-contiguous buffer in API"
},
{
"cve": "CVE-2026-40192",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2026-04-16T00:00:49.590876+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458856"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Pillow, a Python imaging library. This vulnerability allows a remote attacker to trigger a denial of service (DoS) by providing a specially crafted FITS image file. The library\u0027s failure to limit the amount of GZIP-compressed data during decoding can lead to unbounded memory consumption, causing the system to crash or experience severe performance issues.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Pillow: Pillow: Denial of Service via decompression bomb in FITS image processing",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40192"
},
{
"category": "external",
"summary": "RHBZ#2458856",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458856"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40192",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40192"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40192",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40192"
},
{
"category": "external",
"summary": "https://github.com/python-pillow/Pillow/commit/3cb854e8b2bab43f40e342e665f9340d861aa628",
"url": "https://github.com/python-pillow/Pillow/commit/3cb854e8b2bab43f40e342e665f9340d861aa628"
},
{
"category": "external",
"summary": "https://github.com/python-pillow/Pillow/pull/9521",
"url": "https://github.com/python-pillow/Pillow/pull/9521"
},
{
"category": "external",
"summary": "https://github.com/python-pillow/Pillow/security/advisories/GHSA-whj4-6x5x-4v2j",
"url": "https://github.com/python-pillow/Pillow/security/advisories/GHSA-whj4-6x5x-4v2j"
},
{
"category": "external",
"summary": "https://pillow.readthedocs.io/en/stable/releasenotes/12.2.0.html#prevent-fits-decompression-bomb",
"url": "https://pillow.readthedocs.io/en/stable/releasenotes/12.2.0.html#prevent-fits-decompression-bomb"
}
],
"release_date": "2026-04-15T22:53:56.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Pillow: Pillow: Denial of Service via decompression bomb in FITS image processing"
},
{
"cve": "CVE-2026-40895",
"cwe": {
"id": "CWE-212",
"name": "Improper Removal of Sensitive Information Before Storage or Transfer"
},
"discovery_date": "2026-04-21T21:02:33.280553+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460297"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in follow-redirects. When an HTTP request follows a cross-domain redirect (a redirection to a different domain), custom authentication headers, such as X-API-Key or X-Auth-Token, are not properly stripped. This allows these sensitive headers to be forwarded verbatim to the redirect target, potentially leading to the unintended disclosure of authentication information to an untrusted third party.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "follow-redirects: follow-redirects: Information disclosure via cross-domain redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40895"
},
{
"category": "external",
"summary": "RHBZ#2460297",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460297"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40895",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40895"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40895",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40895"
},
{
"category": "external",
"summary": "https://github.com/follow-redirects/follow-redirects/security/advisories/GHSA-r4q5-vmmm-2653",
"url": "https://github.com/follow-redirects/follow-redirects/security/advisories/GHSA-r4q5-vmmm-2653"
}
],
"release_date": "2026-04-21T19:59:59.759000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "follow-redirects: follow-redirects: Information disclosure via cross-domain redirects"
},
{
"cve": "CVE-2026-41240",
"cwe": {
"id": "CWE-79",
"name": "Improper Neutralization of Input During Web Page Generation (\u0027Cross-site Scripting\u0027)"
},
"discovery_date": "2026-04-23T16:04:41.751666+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461147"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in DOMPurify, a DOM-only cross-site scripting sanitizer. A remote attacker could exploit an inconsistency in how forbidden tags and attributes are handled when function-based tag additions are used. This allows malicious HTML, MathML, or SVG elements to bypass sanitization and execute arbitrary code in the user\u0027s browser, leading to Cross-Site Scripting (XSS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "DOMPurify: DOMPurify: Cross-Site Scripting (XSS) via inconsistent tag sanitization",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41240"
},
{
"category": "external",
"summary": "RHBZ#2461147",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461147"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41240",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41240"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41240",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41240"
},
{
"category": "external",
"summary": "https://github.com/cure53/DOMPurify/commit/c361baa18dbdcb3344a41110f4c48ad85bf48f80",
"url": "https://github.com/cure53/DOMPurify/commit/c361baa18dbdcb3344a41110f4c48ad85bf48f80"
},
{
"category": "external",
"summary": "https://github.com/cure53/DOMPurify/releases/tag/3.4.0",
"url": "https://github.com/cure53/DOMPurify/releases/tag/3.4.0"
},
{
"category": "external",
"summary": "https://github.com/cure53/DOMPurify/security/advisories/GHSA-h7mw-gpvr-xq4m",
"url": "https://github.com/cure53/DOMPurify/security/advisories/GHSA-h7mw-gpvr-xq4m"
}
],
"release_date": "2026-04-23T14:54:32.426000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "DOMPurify: DOMPurify: Cross-Site Scripting (XSS) via inconsistent tag sanitization"
},
{
"cve": "CVE-2026-41242",
"cwe": {
"id": "CWE-94",
"name": "Improper Control of Generation of Code (\u0027Code Injection\u0027)"
},
"discovery_date": "2026-04-18T17:00:50.677423+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2459442"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in protobufjs, a JavaScript (JS) library used for compiling protobuf definitions. A remote attacker with low privileges can exploit this vulnerability by injecting arbitrary code into the \"type\" fields of protobuf definitions. This malicious code will then execute during the object decoding process, leading to arbitrary code execution and potentially full system compromise.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "protobufjs: protobufjs: Arbitrary code execution via injected protobuf definition type fields",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41242"
},
{
"category": "external",
"summary": "RHBZ#2459442",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2459442"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41242",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41242"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41242",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41242"
},
{
"category": "external",
"summary": "https://github.com/protobufjs/protobuf.js/commit/535df444ac060243722ac5d672db205e5c531d75",
"url": "https://github.com/protobufjs/protobuf.js/commit/535df444ac060243722ac5d672db205e5c531d75"
},
{
"category": "external",
"summary": "https://github.com/protobufjs/protobuf.js/commit/ff7b2afef8754837cc6dc64c864cd111ab477956",
"url": "https://github.com/protobufjs/protobuf.js/commit/ff7b2afef8754837cc6dc64c864cd111ab477956"
},
{
"category": "external",
"summary": "https://github.com/protobufjs/protobuf.js/releases/tag/protobufjs-v7.5.5",
"url": "https://github.com/protobufjs/protobuf.js/releases/tag/protobufjs-v7.5.5"
},
{
"category": "external",
"summary": "https://github.com/protobufjs/protobuf.js/releases/tag/protobufjs-v8.0.1",
"url": "https://github.com/protobufjs/protobuf.js/releases/tag/protobufjs-v8.0.1"
},
{
"category": "external",
"summary": "https://github.com/protobufjs/protobuf.js/security/advisories/GHSA-xq3m-2v4x-88gg",
"url": "https://github.com/protobufjs/protobuf.js/security/advisories/GHSA-xq3m-2v4x-88gg"
}
],
"release_date": "2026-04-18T16:18:10.652000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "protobufjs: protobufjs: Arbitrary code execution via injected protobuf definition type fields"
},
{
"cve": "CVE-2026-42033",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-04-24T18:01:20.937507+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461607"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, an HTTP client library. This vulnerability allows an attacker to exploit a prototype pollution issue if another part of the application has already polluted the Object.prototype. By doing so, the attacker can intercept and modify JSON responses or take control of the HTTP communication. This could lead to unauthorized access to sensitive information like user credentials and request details.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: HTTP Transport Hijacking via Prototype Pollution",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42033"
},
{
"category": "external",
"summary": "RHBZ#2461607",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461607"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42033",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42033"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42033",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42033"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-pf86-5x62-jrwf",
"url": "https://github.com/axios/axios/security/advisories/GHSA-pf86-5x62-jrwf"
}
],
"release_date": "2026-04-24T17:36:44.132000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: HTTP Transport Hijacking via Prototype Pollution"
},
{
"cve": "CVE-2026-42035",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-04-24T18:01:17.109481+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461606"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a software library for making network requests. A remote attacker can exploit a prototype pollution vulnerability to inject arbitrary HTTP headers into outgoing requests. This occurs when the application\u0027s core object definitions are manipulated, causing Axios to misinterpret data and include attacker-controlled headers in network communications. This could lead to unauthorized actions or data manipulation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Arbitrary HTTP header injection via prototype pollution",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42035"
},
{
"category": "external",
"summary": "RHBZ#2461606",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461606"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42035",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42035"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42035",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42035"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-6chq-wfr3-2hj9",
"url": "https://github.com/axios/axios/security/advisories/GHSA-6chq-wfr3-2hj9"
}
],
"release_date": "2026-04-24T17:38:07.752000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "axios: Axios: Arbitrary HTTP header injection via prototype pollution"
},
{
"cve": "CVE-2026-42039",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-24T19:01:44.887156+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461630"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client for browsers and Node.js. This vulnerability occurs because the `toFormData` function recursively processes nested objects without a depth limit. A remote attacker can exploit this by sending deeply nested request data, which causes the Node.js process to crash due to a RangeError, leading to a potential Denial of Service (DoS) if the process crashes.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Node.js: Axios: Denial of Service via unbounded recursion in toFormData with deeply nested request data",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42039"
},
{
"category": "external",
"summary": "RHBZ#2461630",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461630"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42039",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42039"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42039",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42039"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-62hf-57xw-28j9",
"url": "https://github.com/axios/axios/security/advisories/GHSA-62hf-57xw-28j9"
}
],
"release_date": "2026-04-24T18:01:30.775000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Node.js: Axios: Denial of Service via unbounded recursion in toFormData with deeply nested request data"
},
{
"cve": "CVE-2026-42041",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-04-24T19:01:41.034289+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461629"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client. This vulnerability, a Prototype Pollution \"Gadget\" attack, allows an attacker to manipulate the `Object.prototype.validateStatus` property. By polluting this property, all HTTP error responses (such as 401, 403, or 500) are silently treated as successful responses. This can lead to a complete bypass of application-level authentication and error handling, potentially granting unauthorized access.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Authentication bypass due to prototype pollution of HTTP error handling",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42041"
},
{
"category": "external",
"summary": "RHBZ#2461629",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461629"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42041",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42041"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42041",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42041"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-w9j2-pvgh-6h63",
"url": "https://github.com/axios/axios/security/advisories/GHSA-w9j2-pvgh-6h63"
}
],
"release_date": "2026-04-24T17:55:30.036000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Authentication bypass due to prototype pollution of HTTP error handling"
},
{
"cve": "CVE-2026-42043",
"cwe": {
"id": "CWE-918",
"name": "Server-Side Request Forgery (SSRF)"
},
"discovery_date": "2026-04-24T19:01:22.552379+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461626"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client. An attacker who can control the destination address of an Axios request can exploit this vulnerability. By using specific internal network addresses (within the 127.0.0.0/8 range, excluding 127.0.0.1), the attacker can completely bypass the NO_PROXY protection, potentially leading to unauthorized access or information disclosure within the network. This issue is an incomplete fix for a previous vulnerability.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: NO_PROXY bypass via crafted URL",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"known_not_affected": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42043"
},
{
"category": "external",
"summary": "RHBZ#2461626",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461626"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42043",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42043"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42043",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42043"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-pmwg-cvhr-8vh7",
"url": "https://github.com/axios/axios/security/advisories/GHSA-pmwg-cvhr-8vh7"
}
],
"release_date": "2026-04-24T17:54:42.668000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T04:27:13+00:00",
"details": "For Red Hat OpenShift AI 2.25.7 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this errata update:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_ai/",
"product_ids": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24977"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:95ab25a033b57755fd6624c82d2e37afa40194752c286f731f807e7932a8cc29_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:befa28e03956fe8f135c850fc8ded8b210d5e49038812401372c5ee2baee73fd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:c862c438f0b599236898f66e8927baa7faa7a7fa456024f692f3bc90210b7c0b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-built-in-detector-rhel9@sha256:d8cd5ca31bca804aaa3ebd9c288efb22eb8856194715cc8886b53433fc7b46c9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:22ae54f7efd72ad25e989ddbb2e7d828f9eaa16a0244d9126f0d2b33e5a7d4de_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-nlp-rhel9@sha256:8bb6c2b4d5531c2d299bf90664014832287731471d984ab4580a5c033068e043_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:2559416f6e5167bb63aa5fe90df0b4948ac6517bd77f4c2e9b4bdff6204d8fef_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-caikit-tgis-serving-rhel9@sha256:34a65b788895f60a8d93573acbd1805e8753a2cd94e3b9fe95b5e63c4b54fcab_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:86f1f7efda5afd6b43584388b0b1b7b11886e77945413eee5889aa975bba7ce1_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-codeflare-operator-rhel9@sha256:90889e887292f9b382b7a364e0e53e909a06286b6fe87672507770a3565e4a64_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:0225c8edaee35bc44e9991179caa5b878dcdd52243f79e21cfc39604708d714b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:2868a647b53478b49a2e6556aafa8c4b7d0f27baed0c03a41355f1c4217d482d_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:34e2a0b9054b48f28e499442753f8b6fb9479b5cdc50ff049acc4a0d7a10e931_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-dashboard-rhel9@sha256:5fa86695d06f5aa16ac95ef09d886274a93984cb98fd579c3cda2858f416e3e4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:318637e7a6fa35eb4d5fb867c1d1077052b1729c8938167b15c3ff0884094acb_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:3d3d1e5f1b14b7c63a0f5cc33dcaeff32dc7960e4a7afcf1296705b79d65c918_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-argoexec-rhel9@sha256:43e659d533e800f94fdc120d339ada563d571d7e0054e1490f3c2f32336a843a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:2971d2419d0427c4c33d902346bdd3b7da4fafc6db48aa8627029b41b3f0ef6e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:809378217dfed9f39386202b29b91bb5551199595ce3008172a296bc9b3b3fd7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-argo-workflowcontroller-rhel9@sha256:dd77e1981143b83b7d45618762089795373a807c52eab5d82b439870b4807168_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:2aa7761c2ffb22bd4f4d7ba2784a4aa5d0f14bcad209c9b75b3a77cfd927007a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:e299134eb54d67fd31c15a9da28523be4a1a9e07b9cf4ac31af58f2761463eaf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-data-science-pipelines-operator-controller-rhel9@sha256:ff33824d4ff239d76c7c10cfebc1291027bc2ce9a57a46dc5b747760bc073b4c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:2a96e5c3d4dfba5a5a37ea2c849f028cee9682776a24cf36a420a699071d81d6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:ad58cafa06f520a74e04780806c0502e6c1fc435582bd55c51959c22fab4a908_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feast-operator-rhel9@sha256:b1e8c2971a51c5f302c12814b8aaa543db555b95683be56e8f391d2561c2fa5e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:c510b7c774ea1af28f87bc6fcde10d9cf850fa758bffbc8d7b8059d607265134_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:d81343eddb16f8557b2602f4c155185418f586288c6c408bb8526b45fdb41a81_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-feature-server-rhel9@sha256:e7ce8f715192fca89c84448d1777f9f399bf86fac2268718863362742c8bf11e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:4d0742258b427b2ce0cff065af53114dce37a57e33528f66b4cea31af10e62ba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:568ca1f51eb1da8fc08a677f53ee0ad76aa7556c6cad97c195359569814b047a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f3b2a7523e814a2d3e4d8900ce9e733b782d0ae37572ecf539fbc04384ae654b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-fms-guardrails-orchestrator-rhel9@sha256:f9a187d45c340fde9367072635353f22a3eee418828524ecaaf95f6abc129d76_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:19c82d0aebfdb212a524a0431b8f7fe9492e56fdf2941c14fc34feb16162659b_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:1f93f63d3e617564ef843f74298224162eb67a83d50baf2ea27bfabcd6f00650_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:aca0f918e8afa065dad9f32391f6a43f4234704af1280062d61b33f25800b5d9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-guardrails-detector-huggingface-runtime-rhel9@sha256:dd3b6a5c3c43042d919952cb5837998c4232c29a2e897be73644798ae2d4a282_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:4605ca5e5c2c77c78bdc15b2ec360ed0784d1a042892509c1ea93ccbc89e3c77_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:52d92d90ca12e7efc150fb08bdc3578af76fda3d5191f88428c54e7d72db09ea_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:79cdf07f540764345124dbe7aa5000adb7f3a916ecd9bc1dcc6f79e1569b6f8c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kf-notebook-controller-rhel9@sha256:814913f976cfd818debfb972111cf203a7f96340aaf4d13fe2d7817468881adb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:12fff3b4377e78e2cebe0c0366e76d512d7ebc1c6f38a1e083833ef5ef843036_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:66577b1457350444134578e9d68a631822adbbef70bf1f8a2905bc1446c7c5a5_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:913430941b47c3a8a2eac0ffbf005382813d99f69177223a4875ac84539780ca_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-agent-rhel9@sha256:d00ce895a331962312bb89b837afe919841924fc2fe3dd3da706af433f584c93_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:3d9f6aad17baae70b16a96ee442a95ac252126655dfc9cefbc17e1a2c2885b2a_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:5d64a10d96c181a1e42f9bb77f6cb67a419a2789d0d0e1504502695c089aea93_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:ad3c8d37103f393810f5eb1d0626212099ea8bf3ae462fd0dbaa3481b2a5d8e6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-controller-rhel9@sha256:b8e308e0d8348cf953bc4ca3e567a28d4f8a4f6904962067fa2044abca7ce5e9_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:7542b0493f16c2e19beadc170ac3b9ed60f6a83817620f1d3b7bb7f792f59719_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a2f4663fa079243980a54bec6030a87dfc7c82a3b4786a973305070dc679e6b2_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:a3eab45d2ef2e1c46c552a18397bd127838956124d18dcbed20caccb90492fad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-router-rhel9@sha256:d830496a832733d735ab7934c5c90d4148a4f24c09da69a6b7012f5fa9c5050d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:41fd37da638abc828640099d168a6119ee2bef46aef17a7ae00b19d9055a9458_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:63ff2c748fb815bb272563a95823018ed7db8dc32029a658508d6be8807915ef_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:a0e792ee85851455eccdd6f5f103de9f8f2bedb767d14b5faea98939c57d291e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kserve-storage-initializer-rhel9@sha256:c875d79ee43156aeb79f02402d31024f551ae5691283f64ddfc974af4f9f451e_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:d16c499e55fe310dc8fe4d98f406398d39a9b3e9765df0b95f3271915b6d2243_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kuberay-operator-controller-rhel9@sha256:f8bada31226ce11c6757ad5fec079be457beb3d652993439afe3705b941f36d8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:6050e7413d328d66e6a813e7dfffed1f896b73348a4c1f3ce119730834202242_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:909caa8be784570ba5c50da8cc518a642ca5479d3766b93fcda6024522a8ec09_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:a62f2fba314153f8c71566faa7c7a5937a2675395611bef34f061f5c2624d6b9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-kueue-controller-rhel9@sha256:ad8cbfdba224f4614e16beec20efebc985749ca9437d58c9df319555a9a7af71_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:51239e7a90da277d5350a1e90406c50f289a5b8df597ccadf5900c255a7877e8_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-core-rhel9@sha256:d7dc6111068ce7b85db1420a36a5100aaf3ac47742d9106b8a36451416c38cfc_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:5de43c242173fa583dbb234ade1e915cb03addeb14210e20f727713f888e9e5c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llama-stack-k8s-operator-rhel9@sha256:fd4cd7da6ed9609c3599c9818b2e4206d53a0a67e5fd5d26b3ba27c3dc0d4401_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:e55820d26dabfc14b70947d317f85ff0ac19aeaf41a025ac95b3749c31a7e6e2_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-inference-scheduler-rhel9@sha256:fb6496fcb4bbe74beedbf4257bdc854d8e8b7803a7a89751148d4ad5a1c5dc7f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:0666335c7f0d1c91f69c2cfff605746a4956e064d3f9a53744b906b19faf35be_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-llm-d-routing-sidecar-rhel9@sha256:54c7f0e59c08fe54499752de019ed4af09a035b6d177face3fe4fddb9afd63cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:1bf08d05a0da3829300d42aef1732f302297866b985d0e62f3f0a23c1d7e409e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:4c6299fe12eb08a231c8a8e47a72bbf524cf789b4920721653ad165a997a1da6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-api-server-v2-rhel9@sha256:d3ff9ba1bca35af8266b354fa9d1df3a016927c3de88a7fe6e54dc65bb0d3c6b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:38d33ad70873ee143d4d705cce7d5b6592b673aa55c9a043878e8d08bbe36f29_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:455518d1ac36ade6e264f02b4549bb0c83c61d8e80f27607c97fb5d28a207d38_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-driver-rhel9@sha256:df63b1d6ef84df0f7821710984f97917204e71efb58e96b1f08a82d5cf9bf9cd_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0eb833c27c33e10be0e5bece4d4ea8d7ffc8d9d56d573d7f398383ac1b7ad15a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:0f5069cd3ba8982acb0e40d2fb678f451a5794e069b1bdc5a48aa8992b914a2b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-launcher-rhel9@sha256:def7a74da2ac31c55e15c11726ace34d438ffcfeacc953c4eaee681e958a0b51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:690f2987a7ff711eca755d80bf60a06ad69415a2f28fed365ec1c3e3c58eda22_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:b8d4a06057809525b8307e6391ea3f54166f5cdfaf622d0c72d8f74e981b150b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-persistenceagent-v2-rhel9@sha256:d6325420c10471b3fb3255354f4699a6e8c030a609e3d253bd7b83fc258ffc6a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:79c0ce2df3b3062d7716c092cb07377ef9eb102e64159757de788a016ec6f0d4_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:a27805f4d6bf95e4c158f165efe1f8f39b07f0b29f631e6ba1b0983af4b9eac5_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-runtime-generic-rhel9@sha256:f7b005a4b20cc017a9bcd8402e6fccc1798a3624d2e045c4571a661253df9299_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:009958fbaa602b922e4fae070e2fa9c488c1c3933fc61739eb8d2eacaa8052fe_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:7595b4a7bcca686be2fd8780334067e245d89932834952cb5f3a671d1f1ac0c6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ml-pipelines-scheduledworkflow-v2-rhel9@sha256:ace07a159c9274b4f2a4e57177e2583518fc6dde0d757cd43ef1eb84be03f317_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:50c8907ab19743878d5eec02fa26f4235cbea0a29fda67ae192d5a8bbe1a7149_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:932e07d0ef7472691680bc0e9061356770ea95a5d75dcddde1ce029fba93b87e_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mlmd-grpc-server-rhel9@sha256:ccd41f4ba5b68c0d9508d8833035eec058fc05dd0accafedf4c06f4836d1b50a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:4f2dd7ad45b8c5e71e641b7a26f4283cd51429ac2340772f299e83cd28e235c7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mm-rest-proxy-rhel9@sha256:6e7b599bc0d1637d973dede6949c4fe3fc6fd514669789cfb448b308b7c4c17f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:560a4ddc58b23f3b39f7838f3a1569445b47e1c89d6ca7923b85155b5550911b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:707222d421b8b34b71cb7be17c3f2428b323c0a8479288da7edf7f00d67c8e25_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:7b713658a0a5b8d0e56806204257ecaeec6ae7b878af1299d5c28dc629a0a5f4_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-mod-arch-model-registry-rhel9@sha256:91ec482267644a7f106fac41d4bddc6d7b2f417034225db36237819a02424d77_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:290037272ba5d56106596f574078acc4dc754b9b9ab6968d1395d42cb39a23e7_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:47ff29caedbf338c98a7677c6f77e69d1b18df6c49ec3d718f429043630e4aa2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:89562774497b26158ea906f20fa5c44d66f6e5b5b98c278675db48ae302a5d23_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-controller-rhel9@sha256:ed00e7368a8d3a1351fbfbb428dde66227c42921b98c3bad358a670481b9a473_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:bfae2dc5d5931ff306c9960f12c2bd63eb989ea51c230992dd45c2eba070a6ad_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:cc299781361630e38d48fbcb75be2ad833311fe0426a32093fc6470e10ee37d7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:e1f98bafa3fa7df17614f361bfc3d020abb0d5cacf260ce69a6206acc2327987_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-metadata-collection-rhel9@sha256:fce25466d37d0b61bc629837d81591142013cd0fe299f25288391fc8e764a483_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:017901436a1a8f895ef30dcc74aa0e76fd5073d7f4228ab15a7b760c83681ff4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:60b407ae0868e3e6e061ddda94585200404b2c90545a3cef57e110888101f931_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:bb06c01ed29e1c7cbb85f565ed9973d4a6f333b63e248a345255beb96161a1c9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-job-async-upload-rhel9@sha256:ff6553636a4d07c828f5a3fe8eb22bc479be00bcc6dbeb8c850acb46fedc2a51_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:792bbf2ae5958c3318bb1b95273cb6f06bdecd1317f8e4bbdece4398e21e05c6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:9e315d80fcbc41b6f92e15d8e60ff248a2f99c3b9f44ca17829dd521dc1d809f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:e3069a1328ca40fb604be2971e89671ac84ab7d5d0011ca64dafddeba35a2fd6_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-operator-rhel9@sha256:ef01f8d67f8902801082f1150c759d9f2a091d8eaa578c677f7914341d966638_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:4051352a865047fd16f539cdc800c6a2aeae2770fc170d78e496572d1a81af04_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:5073aa0460d5907ee3c4472429a38e6b593475c41182ede99a90303c43f54f53_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:7d43cc50598cf385389390488f4d8ff62ab8cdf6377a754fe0356926bb7087a4_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-model-registry-rhel9@sha256:e3ac3fff38987a12da01a2db3d7cb50e4571964ae320ef471570b444c68b7861_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:547db02ccc1a2dc941ec9ee6b07195197cc96c167067fe28d6fe9d8592f7e4ce_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-rhel9@sha256:6f4c1a5f4f57eff6a234672fc225538be92be8fe8e99383060f101728a02f10a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:bab8d514f884640433da2a9cc4a073a579d623d85934bdaaa0003a9c8453e59f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-runtime-adapter-rhel9@sha256:f9f7586b27642d05f380b67f8755e992415bc9345a67e1f73898494aef0d679f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:0d79093265a6ac7c9e176efd4dc6369bfd5f424773bec5cf3adbd30625ca8064_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-modelmesh-serving-controller-rhel9@sha256:a7f58779a1a58096c607ea27ef7f87ec972c873c10302cfaccbaba490e369151_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:773c2e47a9cabce118fd8b9074b0ddd4361374cd4243b5174e12a231accedafb_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:a626a76c5637ce3d5e5b70985b42a8c5a8e32ba19c17fbbfeae369ca5a94e796_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:d65cdf560f1eacc0218ef1e5c707b05ecf5c94c149849342c29351f52dc73920_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-must-gather-rhel9@sha256:e0993279aab3ec527b7576382e164722f5161c0328cf906dea01c06dbc456f74_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:6fdb44086b3ad355ff64202cb63c6680aa7d335f84e5cfdb9fa2598a2c47814f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:c0b05bfe38b2ed7530bb46c1687a062b4b9369e90daabc446088b59ef48bce76_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:cf08e86601108a3dc28430a6caebaed623362fb62df234a6d2f84357aa13bd79_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-notebook-controller-rhel9@sha256:f4064275b736cb0e1113db9606d7203cfbf8b34987458da02e13cd3380397c60_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-openvino-model-server-rhel9@sha256:73e83fdb2b892399808240425720a45e3f3e98074c0eae4a25e304124b9876d9_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-operator-bundle@sha256:d6e42016a7fc3bfebcf2626faa3531505fa3c8eed551c20768378649cc89956a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:4d39465bad0e51aad75a174d9946e1bebf34cb9bd98cf22dad6cabef4b59fdd9_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:741d5e212eb48063bb655fb6a5c66438d96574be0c68c63b753725fd8474a2b0_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dd929ecd9b36c5b498ddb8301c014d69c36918d53cf2cf9e35715c633f6905ba_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-datascience-cpu-py312-rhel9@sha256:dea55d36eccedd767497c23144fbe8fa038b281e59478b13544c8beb6724dd59_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:0642ee244553b27b22cb07b7b6cb16fc84d296faeb21b306d17a799d9db34189_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:3a617bde805cc16d14d2d58349136c038bea1224b1ed1ff37243fbc637caabb2_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:58e5da4c552ab690457325280cbf24ef2ced6c1ebba75b04580405d89594ed13_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-minimal-cpu-py312-rhel9@sha256:739c9839b2868644cd710aa0bead345fe06c90a52ca6994546294d8f178c5453_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-cuda-py312-rhel9@sha256:f35ce6caacf4e34d8301f1867c67227cbafdcf76abd6588b09df7960a55ea869_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-rhel9@sha256:d34129a713ff030c034b5f927194119bd8f1996c1d84672f60d28171e048a294_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-pytorch-rocm-py312-rhel9@sha256:b75982d4c85727d268ea2a4d29cbed9c8f1566bbf466dd88fa4072694b0c2c97_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:90b3ffe6ba5b453a0b6ab631f98a16fc12dff81f9dd2c96a222e55b6c643beea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-cuda-py312-rhel9@sha256:a0c33f52e1a2eb31cc3ddc45822256d65a4d9c3d8dc0b05253d746e48d263f4a_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-pipeline-runtime-tensorflow-rocm-py312-rhel9@sha256:4312d53644101795af8575934ec1d78ef2e2a2d21c257aeb6ef588b7fa806b28_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:96df2dbb928da1bf319c547653a27ea1afacb457e1871e2dda0eca85432c4801_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b46b94913c4ae9611197721ed67f645570d399f2c8c75944466a0be3d061d39b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:b555527eea760de80d7fcf1fed41e10f27025edee9a662498a7bbf9c471710b0_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-rhel9-operator@sha256:f581e73050422bd319066446f69b34938e38df3e3e0d0bd0e6715c8f5ae01d09_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:60db48641b5c4f82954ca620c3e0903900dd6aae225b2b046906d63863fac788_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:860d791c09d73bb994897ac6f5cbb5f6f99540184ce2aba600e72beba23af217_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:998002d079c1ba5444a5fe2193d0206e73e6626e29156fd71cc781b5971cf1d3_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-driver-rhel9@sha256:c283d1b3ab1fcd3d523e355eb3c825d7efcf40d117c32260344dca2043d34a14_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:15f93ed89b2267850cc3c63027677efb4bc47de97da5a59afefce37aa3d9e23f_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:3124ae5780d23ec0866bd5dea471a4aaa2cc3197dff4eb6fbd83ce72a4f257ef_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:33c4c74ee6084497b107500b7ed821f5c153ddc7b6603ca6599b696911b2750a_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-ta-lmes-job-rhel9@sha256:9bf99ec4ffed5560408e38c6f1b18c4ff83318cbf2d248af06e4d20e5cf69191_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda121-torch24-py311-rhel9@sha256:d12d687263cb114c09b4ec5fec7d60822b9ed36c865413e2095c40cfc0e5f658_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-cuda124-torch25-py311-rhel9@sha256:e6099eddb032b31b6d3fd50ba59a05def8297b9204f82988d3e62ddc543e293e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:72fabbc30d664b1fdcfbad0fb4a13fc1d81321526500e7f3fd42ec2fe4ace37a_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:8d530240657f941bac38f15b586b831810108a746f5700f55a7437b26c02967c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-operator-rhel9@sha256:ec9a0363ab255eb588dd92f753da9bd4b8ebd2e9e2901d87ba1ffe19ee84551d_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch24-py311-rhel9@sha256:8789403bede367ed1348ab58b769e05ab75492f7a7638dd2d663ca35cd9b21e8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-training-rocm62-torch25-py311-rhel9@sha256:1e85f20b866533bc8845950a5af025d1760899a7640a18e1a38d7a27cc54011f_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:38fc3fd516248c1c478a14064804269ad065e58f4278ef2fa838b710647b821f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:91c704cce924eb614f8b1afab0d5861f21eec700b6d8effea554d204cf2ef601_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:b26b3f59015a919bafdf03dc0aedb8a061a37dbd4812dd210b88f6cfe9711708_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-operator-rhel9@sha256:c8b782d9199ca3732ec36f315f6a21c8ada2e67e81ec8990db321d037a528aed_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:4fd9d4214219d8828511bb5c04a5d4b39c4db7dd81ebd1ad4c4d82eecc906c69_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:62a275f7fb6be72fc05c7c9fb7a48f93e0cab8497d1a59f7f7f25a58038133db_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:9935685b796cd4c34a767b0a35bfb18708742e3656965ead0f752bbc35b813a6_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-service-rhel9@sha256:e4c7a27a5e275844b1a8259e9189e4183b7805de3586f9d01b0d79490d14d41b_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:1686936dfad773746499871f7131ba3eca04fbce745ab106ec80083d17540d3b_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:508143444a59372aaef12d6f550c9eb0e91c99524985738aef5d90e8c382385d_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:afeab7cf8bae77de676bb5f65796ea2d7971e5c3b1d7db46a29f48d6275e9dea_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-trustyai-vllm-orchestrator-gateway-rhel9@sha256:d127360bef7a6e285a54bf100b3b23138c566da441c56d435ec8ddc73a89ff3c_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d4cfcf8c93552c780a7f7756d307953a4b8195eaf5a2cea198db1eb40a577ed2_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cpu-rhel9@sha256:d6546244ecc2911078bed1d0924a585579257438644323ee97fcf2528835afba_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:1af375839589b82cac870d61ddc648406c75b3ad904a0f9723975ffa66559823_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-cuda-rhel9@sha256:c8df876b659d8382e024eba5d85a6aa94120d32a65ead0b8dd1452865e2ca2cb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-gaudi-rhel9@sha256:281b9d7c85e6dcac3f06dd21c70a691767a62eee485e83ed0d5ef9785d630c3e_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-vllm-rocm-rhel9@sha256:0be4707bcd54ceb0a88497d1cbbc6a332c5154de5230b5fa2f8d1af11b43a777_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:337b805014104293f51cd4e64706b74e7214abb3049a6c63c6818aa30bb79a8f_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:546144504cc53fcbd7c8ded2b7e86668c17d0b4a9444ba998c7a326891bbf0f8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9@sha256:d8f8e5e39d285b531df942bd41ec94f234fa0dc9325e158517f893748e265a0c_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:128879eb003be1d01c721bba289d2fce6adf74695c738247076704fd461a3fc8_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:31831d410585a66281ad4521fa4c2fcfc0abedf20986b43c195ecb580ac3c040_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:82a0ed6dcf6e7f7ac5cb2572105ed8a3891504b6cb9733c30087919ca9d4dae7_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-datascience-cpu-py312-rhel9@sha256:8d725fe4ebbf2d59630cc629adf7e5818553aeb6251cb05b6ada693be881d7f6_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:516ef413bcfd9c8816bd5f82a06fd516eb2ed135718dfcd8bc59751c210a30bb_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:776f63b547a5698a611f0af74448da1ffd6beb6a7767db040204acc5b66cf4cb_s390x",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:d2fd8349c5abceb9eb55f6ed954f96d60dec2e5f1bc037204ebc6dea0d75ee9d_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cpu-py312-rhel9@sha256:e059836bdb195f58036ff181641b6bd04f5e4512d1ab68988d0e162491a47a16_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:5aca0bee303ba0abcff12fe7c499eceb3e73203cf8e61165141acb33b7d6a1ae_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-cuda-py312-rhel9@sha256:c7f4b1c8440bdc1e449bc216e3e562ceadebe5434b162ec14fa7e2798d0b041b_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-minimal-rocm-py312-rhel9@sha256:a041596b2e646b2f089dcfc574eb105449ba1e209fb10e20e1922b97b68a1762_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-cuda-py312-rhel9@sha256:437912f0096b22a9cc2ed70ef85f36e4c95c4af502f51c447e0fd5e93138f978_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-rhel9@sha256:2b8600182a04936b9c479c585c4e95d72574cbdfe3bea0571b4620db66865004_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-pytorch-rocm-py312-rhel9@sha256:5c7d03c6c8a719928aa2aa2617cfa96bfb243b46ce2129785b540efc0db36f35_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:1b2fab74fd60d270518bc5efa3cb726c6538afe5ecebce765ce351dbf6e9d855_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-cuda-py312-rhel9@sha256:ddcaa43cea9580926436804fedc1d3add96e0c76357f6e728449cef7e0a51c16_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-tensorflow-rocm-py312-rhel9@sha256:3b6c51bd4150a564db37acfc7cc7afc1eba598014725076c9327e9f50ecc7f63_amd64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:08f57b4e50964b7340b30dc29271d3ac8d0adb6ddb59cc05413f8c56a4589d21_arm64",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3bfab4583a488cec61a29f72327c6bc118fffe342dbe4ad37a3d09c6eef589bf_ppc64le",
"Red Hat OpenShift AI 2.25:registry.redhat.io/rhoai/odh-workbench-jupyter-trustyai-cpu-py312-rhel9@sha256:3d0bb5184b0193f1527ec754c8ab20c1862876a939e7cae5a83c8b841172faf5_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: NO_PROXY bypass via crafted URL"
}
]
}
RHSA-2026:25009
Vulnerability from csaf_redhat - Published: 2026-06-17 07:57 - Updated: 2026-06-29 17:50A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:041d72bac1ff9895f91c83b21a4f92499b948c13354fd074393bb7b9294d46c0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:505e422599401fbf23ce7000b02929b67d389c9d437974c8fdf91a0ec76061ee_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:e6a4680ab3d78db90ff3cf6502c8e1987844f5c5d8a2c920d2aeb9c8607f8d5e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:1222990acec343a998b5085dd11a44583d86b7cc76d8f99b69d8a287116dd57b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:a80bc249c918d1cd92e3c46de8e87b388783ae93b9ac95839eb3b0c0efb8d8a7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:cd6243cac5a039740a5b47baf91141ed3e70cb5675cec93c93434201d374a6f2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:78dd8bba83fef4a8fffaa7b65ecf9f9c50567eb051f3015c8bdefbaa8334de5c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:b4a51cacc8a06fb6588ea140e3b50ff0166554e8d7b38c77a13be4bab9885356_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:fd24147630533238a126ea21fbba484239135a15023c524137fc8ea25a7065ca_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:8451c790ba30fb6395d8074c37c150d88d2adad11920e9b999332ffdb929a328_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:cdf612d1d3001b7e2eab47bee66395dc626a6a41421a9fff247ac7f1e530c281_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:d6584c4860edb91594eda55fcb27a576c6e74313b10569079d5454553dc1b64e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:e970ac1c75d936d92009f8fbc6754079704ea6d7731f2065c345c3a1e4412cdb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3965aaeeb958ccea911ff08d45da2c16ef953f6a473eb69b790fa1afa7c0b76d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a7e30f2b77bb97ed583ee189ed72dfe9ad2a3928c67eb6d5aade5f1467f5d332_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b3925f84e0f1311b6a2461b89da2d45c79d93fb87c927e8211581a320ca9f9d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dfa66f12770ded49cbc84646d0c22440a157fcc71704d9162e1336a26331d9fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4601d8011ff56e11bb8821db387d98354312a371bd8670cf915bfa9dd3de99be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59850338d772efb690f2016093b01feeb4dd3c73805d77c26172ef7f293f1a55_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7fe48ad9f89f61203bd0ee397ccf7c5d9d37ec30b05ba837dc1089fe6ee67068_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9cbca78a3a21d65303eba79b841fbe67f53b0a65fc82879534266075deef35d4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:5b648181cb5f1db70ab87fbf67b017c76fc1f83f7add0eacb658bc723763e3e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:748bda8560c46129d59afd0680c6ce7421d5bbe007cde1e750a8dc9c417cc88e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:776c81365d8979f2ca91127ff47d38362c7a1682643bb70d9f221a35b4c1f05c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6deb824bf0fdd43b4c1d89e8b8601e05b1b09dd1b89922fbb6e3ca7ef7bdfea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:35b685780d05bc62b306783208ceea2a99b78ec1e38099d25ab9e27fe64fc2e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:38b7e234acdefe69fa3c01d50447aecf4314443f72410df6b81d9b7d66d8281c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5cbf178c6594a373950ddf0e3c81452aa4163b6e4ebf30a735207a2523cf918a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:93c75b2ad4a4b85855a1e63cf1e1ca7e0a7b615c771b857d9bfebb7651d18871_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:3605def86edd8ea7f97a2e46ead0764197dfb13a9b5fd00052d91e5eb7e9fafb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e1fa556d3b407ce1489283a4111eafad610475cbb18d17e238cd20bdc24910dd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e4ac1d06fcc633033dbac0db2749c09678ef71c109c1efd75ad31ecda396f721_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:edb5c32f8172251350021de785fabeb9a00a0d8250758f7857f9ea675c74f540_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:2db7e64a9345be2d431e0ba15601ee9cc8d8dfc219a757a0f7a664d521e8adda_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:67bc0d4e819af067717ddcf765b4d565ba2f953c65633c122577fe192a6bea0b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:7c48b8be9465a9f1b14db62cb2a1b4f2799df16407f306e9ed085946ebbd8d30_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a4770ea3815a2528058f98f6952dbf58ff2d7ac12fd36f8119568c03eb5b0263_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:0100f495023b4ede4318d4cf15f68b9e33f0ba0b48331ce8cebf9250152f3211_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:222f4a27a841f4431f3fb204e1c7d3b55fa030495319514eecb26292c3beb0a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:db078402e0278f7dc1a0626bf3afe14c2c4221dd438708136de4a93bb0ee70c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fcdcc373e6c1ee28739e8883c4c6b447267987e34b9404ae693cf4331aeac76a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c4059a5b02bdd9d01fed234cde35e9c45e812cc4ee5be35f00ba806f0d84f3d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f553364c160f85a326a63ef456658486e384c56ed0b1af539ebea2d2e503c81e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30af84e015601d39ad0b62c14cd5ad901ae6a4450ff247ab265b78eb8fac39a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:eeb09578f651f65f8f8216cac46869034bf17bff001a2ed73d96d11772532666_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:3dc64c49b4ebe48c00a1e75fdc94bbd8828adf9118e5af8d03d51a245f1112a6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:6e36fd9c87b45f4257f9853d69dc676dfd561c408ddbfbf1c247579a62c54350_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:adf0ed6be1fc6efe5c78191efc5094efd8663b0c3ec3815f7c824f9919045c5b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c604800d8da5342d1a2d3c8d684844d66c4df5d03b686b0666e109aab6dc984b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:8d5c598393328496de5fafd9117d9d4f9fa4fcfb8c5418ade4df1604de18207a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a91a92813ffb55ea55c55c27085ceceaef7734567cb916fb9bdbb18d59a10e12_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:d456e8be4a3a28609cd29dda8c9f6fa46130c8a3d421e23c97d762d089bbe5b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:ed64b71e99e3e436e96d00d475870df08877316e3f38df129dfb62d40ef4c45b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:50035776c45729ee560a831d79b3c8afc24a5691167e8c583eadea2474e23641_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:529836546956099d5d3b03861187b4bf92be0fcce6fbe95e5d229d6d5923c28c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:53f6f7a759a936966f39d97e1a7c0b10c86e02122557d710f14f0289f0b673a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f56649d00f40db610f0a6fae6827575adbf58b70368c0dad73c794a3c77a35df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:0e8ab3244ad637aba8448bd161d3a06c85a68afe7ea08e25064c4ed16c7ef650_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:280c976f5b58de0920c9ec4e2284cab56077dc975a46146aeb53509c4b302b83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:6b5e8518bc692c328963e632a4f0a910761ec536a8f4ed717a576c4bac3ce963_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:df7c038aab12b439d56efe938bc673a24018e023a8de1e1c7aa416e042c55561_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0d7ec956e636933e576c00924726bd24a267bf46a9510a9e50b7a3e79f70daca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:467ed1130abf80b62f8e0537e9977658d22dbc3cf7cd40ca96e3a54d878feedb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b2d5d8ec572abb2c30a98be0de1e11ca1a2adf0c6faa3347c6a0d2ef784afeac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c915c06f28341ba8aa9a1c00fc49504a8816b0610b2cf5304f89fcedca8bc478_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:2a325b078b73e9bfd6e92f8154c4177aeb60dbdd59657227ca37ab1bd46827af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:671a3dabbb5b5f6b2b4620ce823d6928b65506f2acffa0104a4c2d149a223211_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:7d65d75e025be1ea2f6d82d14f859786f448e619422b10f68cfd4f68ae786a21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:999c307a79cabd8e9553f5d807d4125df1fef3153ecfce17cca871d5f8051eeb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:758f10fd65669acf6c81de7d53ffacf7de3b2e81498cd0f39990debd9110b69d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:9d5b06a17a27074c71ca8c4005e1b6b04a4ca488eb2571279805cffc56656c03_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:dad9ed95f9fbba93ad7fe74761b007ca7b4da4c59a73abb1fda223e4c03a422d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fcfa3ae6a7face4161aba93179d149a20d144e8a2a8564650750b4d8f0013496_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:4bd8b3ac46a8db114f1910d03bab222e17e18db8544e8d54ae8a0b1d0e24fa1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:97832034bbb82111434b4fbfe1444407ada2a083429a7efba57d55b4d610537b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:a52f59971348bb0e5766a857c16818b379c404c3af300bc697ae1fc8e3f54f15_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:b65119938857e8150f90c3b6bbc4e92d9646b9bc6c39f467e0ba3e4662e28036_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:633d1d92e36d87a1f8adcc69c9b9810ef84ecda5b85dbfbd6eca2bd4e97a2ee7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:6ef9d153bbf3c65f132cd7d29dbd58d01019615f03eb07967023e446bdced8c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:f70052e4ccac8f01affc7e0f1eaf9d14b4eb15544b0b5509fefb4e47a2a820ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:12d9ca6fa5893e68c553fd8909113ee1a29a96d3ff3bf32f3824791681de15d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:3af4fce899db69f0df6699cec4a3e4b26439c6a18de30232f1ff145f00d5d68a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d2fe0edcc847e8cb3727941b91149007f9c669b0bec5847a425e82212d095d79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:0889d518d954d62033fefe6df255f5ba816dec01d415d13a5634132f05eeb344_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3115448f5481f6842c97e13aaef4b9a2925a54f6998b9f48000a74faa63bbfc9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3a07fa757f01f4899f9c27883f06f4f7ab567310f5ae6bd44e96eab22d6dd01b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:95c7e0528adda5ba04775f32106977c5e3d95383b6553d57c703fc3e74d50a18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:04bb985f7378665fe9840691d2ab90465b726431a39518dd087d3689d6817a6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a008fe2d2aba4b5f793d1d795f04174dfecc2633856129d3786a18b641a34f2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c368220ebde4dcf75123e81eb9dc4e13544f64edaa79c28a21c93126e58239f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d4b20eee8037ab15a8e786ef3db3b1fddfc936fc59f249d893227dd1659d1ef5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3f29b35a62f679a89a6cf199988f89e736707012542d72aa1761c89eef1909fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6c1b9f3900fd21b51aab4429b50959da2eec8d1fa64c70e1cc8e5ebe72a24cbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6d498d0d92f88fd51112e5b14233bd66880e081569a99000e508d5811d3afa56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6e94ce6c4e49d6de3e1bdbc145712ac8d1a45cc841785b20cb7605c35bef5d35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1273f2e53f3d42e861050972fb3612e33d8ec159e29fa08bd7dd0e6f896b17a6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c814b9a5380c33f9da6d646d956f2ba425d1eed63e718b44f574b1c2f3f0ea5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f005f7a9a4bbe701274a5e59e7e0e3c3a72426b19560653575ac6caa0e28cdbf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fc078ca1f72f833ac498c30a1de5a4c7500c83cd94a3008445373266bfe56acd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2af9330004a06971944971326d1e8377cbbf4725f9d703db266abd7e5359d7ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:89971adb04a2e0a67571cf02489e6e383ae971000028d30305e584aa03784348_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:a3c950362ae071e71de468b7f619678386edfdfd0855d0df075f99d993132720_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:b35a1300569e0905cb750b7217145c94e246036cd498993ead14d07e645d1fb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:1afcc680effd2ce9de75d5a8ca4b7a1940198d30e5c042094f6eba007f5d673a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:8da6cb3c6dacaf49d3eedbeb0f03324a14734f4c918ffb038f41d0ab2acadd68_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:9235d5f0629ffad8a5af4e8a50660751684ce91eae489122c2f89bb79ee833fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:ec49da4e5124996506d50392d8b7078d00c5862bea5e229e7351b5e0e6532c6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7c1c1e7d2af533ee43c92204d4e87104f305cbde1af7c8531fa8f1299c16a3ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:b1d620feb486ef28423ee30cf03dedd26c30f589b12d87fff47a19cbcde4c3c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d13a4baf04347af18f6eaa4cbdcd5f847ebcd396efedeb89ecf1393cd1e378f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ecceb25263477c9c9aa06a38df00fc004dd471ee9cccfbdfbc280c29d62f275b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:932692970cab5f163ce35ed82c9cbbb70c8a7b2224b82d4bab39c86aaef4609b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:9d157aa28bd24d12e49d76723cb91a19f9bc840a02d4850f94b9110530b76e7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:b5c8be4282dce9ca844df81ff8696bdd5fd25bb58b51c2061d3a3643e3f8dc2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6265c12a8b31624fe4257abad1889839e2e1612167dafa7274b8d614fdfee64e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:70857d797ad076f5f20217e39673aa6abb0647ecbaf95ab8252075f43a68c073_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ce8fe5503b8bcb1bb338f06dc100f0bed5f85340eda1b73adb58d92e7aaec22c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3b597f3bd5af1c355f4e7c0ed012ca06697cbc37b9bf9a23a5c5f4d0d8162321_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3fe5d5a4ba52d689ec4b106ed8899e5fd75759671a6192641e2e24873707db77_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:557cefcdfef854b4ef381acf2f7de1bd1cf3f29a54398616043c6abcbc8a81f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0bdf015e02c235268ce9fefafcb7b841266f434448ae5aaa9ad66e49ed36a39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:22969e24366f0b43d2cf11c30157842f595bc54976ac096ede75fbdcc5d4985f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3b487d6d2f8191f74b599cd30b8c982010c10409fd291eb1dc4c6c7b683f7cc0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7da1135f319c0f3086b822465dfe0d5e1d1d7b547b92dbd42dee8286c8f5c68f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:e3b0258cdf56b709000aad847e7995099da913bf27676c138a5f9b0ea585bcac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a26f61e6063fca59ba6ab989888880ce959e81bb54b552ef7bd81a89d69b2b77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c115cba6d9973e91e208f56a315676b56657e5cf7863d19c0a7103f13edb9b44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ccb1f539fd2f75a062fc2ed4b0d7f27c360aef121f933975e9ef9235af453934_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:e7a8657e23e6dd922ea658aa52e8145254cd5753589e5ab3732a0d1d574e46f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:0ac2a7fd509e0f905d2807f93051fef189de6febdf428b8c14e2618e6b70fe7f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:18bc241751cb6151f5b879ca160aeea4f08290e3fa0922e2c01eded3a9c44919_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:ff30de805aae0da846920093dafb42ca2266b48d7b232ce774070fc1c0da5709_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:10efa408842bcf0b21fad1e720b1a05dc849b5965a891ac470cb8540f517a54a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:61967b9608d0920d92492b9fca096e3598f389329db9cf64c2eb6bd75b846777_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:77f97aa79f52695ab5dfc605b780692847051e9dd679789a0f355510ff6cfe51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:82c20bceaf5cb9e4d3e98fa58c98a679c05d55482519ea3fa080aabeab34cdf7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:ba573576b17d3230c3893819b2e570a0f5c2c9760935b2c882c57b2da99696f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:d83381f446c0dd432b817203f7e86897fd07a8e5bae54a537edb4712fa6fc264_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:88f1d696cd44e19a0852b3d51ba224129b920c5d1859870dc36de53e3cb95c84_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:8acaa460c5ae992714e25d957948477118dfa2eb6adfd0d84a457b9bfdba54d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b23ea9fa8eaa75fb8e0acfa6f45ff360a8784627cc3fad5d608a80181f193c3f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b70ef1d999b9f5308ecc361d6e4b74c8da65658d1d6802c731b6aa3a24725dc0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:402f0bc32520a6391d25b5fd70e323df8f810aaa32d6f4a4ec190c32f851a153_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:5d95ebdf8eba75315f3e296f24533697ca66e3b828b886e12f0957d197ee388a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:637f6b5eb27d7a38e108b070130b6a52c0f44923d584ca65534cd88623d86f40_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6c87ec100726f3a8c65475666e604062f391ce3a8d9f516eae64ef7d51247fba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:61059dc3377fbd1c6d7426712242943cec1ae8a76752709afd421a618e143b47_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:baa34b4e2cccff9bc62d82eb6552639010785d44cb019acc69866cf2aaaa3806_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:fe4370f51955f5a8b5588b7e590a9521cb792066f6259ea0b2b032ac957be413_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:753de30d0d2a7db211426c9ede26bda02b91709680ca5acd2334c921e08fc088_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8d3a4e42a1ab884c9bbc9933b66db18c60e75a344a2d0570b10923c95d70fdb8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9a3c8ef3d81076660d34fdeb0f7b2d7ec088383fb8666f843eff5c6efdb9016b_arm64 | — |
Workaround
|
A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:1afcc680effd2ce9de75d5a8ca4b7a1940198d30e5c042094f6eba007f5d673a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:8da6cb3c6dacaf49d3eedbeb0f03324a14734f4c918ffb038f41d0ab2acadd68_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:9235d5f0629ffad8a5af4e8a50660751684ce91eae489122c2f89bb79ee833fc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:ec49da4e5124996506d50392d8b7078d00c5862bea5e229e7351b5e0e6532c6f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:041d72bac1ff9895f91c83b21a4f92499b948c13354fd074393bb7b9294d46c0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:505e422599401fbf23ce7000b02929b67d389c9d437974c8fdf91a0ec76061ee_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:e6a4680ab3d78db90ff3cf6502c8e1987844f5c5d8a2c920d2aeb9c8607f8d5e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:1222990acec343a998b5085dd11a44583d86b7cc76d8f99b69d8a287116dd57b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:a80bc249c918d1cd92e3c46de8e87b388783ae93b9ac95839eb3b0c0efb8d8a7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:cd6243cac5a039740a5b47baf91141ed3e70cb5675cec93c93434201d374a6f2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:78dd8bba83fef4a8fffaa7b65ecf9f9c50567eb051f3015c8bdefbaa8334de5c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:b4a51cacc8a06fb6588ea140e3b50ff0166554e8d7b38c77a13be4bab9885356_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:fd24147630533238a126ea21fbba484239135a15023c524137fc8ea25a7065ca_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:8451c790ba30fb6395d8074c37c150d88d2adad11920e9b999332ffdb929a328_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:cdf612d1d3001b7e2eab47bee66395dc626a6a41421a9fff247ac7f1e530c281_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:d6584c4860edb91594eda55fcb27a576c6e74313b10569079d5454553dc1b64e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:e970ac1c75d936d92009f8fbc6754079704ea6d7731f2065c345c3a1e4412cdb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3965aaeeb958ccea911ff08d45da2c16ef953f6a473eb69b790fa1afa7c0b76d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a7e30f2b77bb97ed583ee189ed72dfe9ad2a3928c67eb6d5aade5f1467f5d332_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b3925f84e0f1311b6a2461b89da2d45c79d93fb87c927e8211581a320ca9f9d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dfa66f12770ded49cbc84646d0c22440a157fcc71704d9162e1336a26331d9fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4601d8011ff56e11bb8821db387d98354312a371bd8670cf915bfa9dd3de99be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59850338d772efb690f2016093b01feeb4dd3c73805d77c26172ef7f293f1a55_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7fe48ad9f89f61203bd0ee397ccf7c5d9d37ec30b05ba837dc1089fe6ee67068_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9cbca78a3a21d65303eba79b841fbe67f53b0a65fc82879534266075deef35d4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:5b648181cb5f1db70ab87fbf67b017c76fc1f83f7add0eacb658bc723763e3e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:748bda8560c46129d59afd0680c6ce7421d5bbe007cde1e750a8dc9c417cc88e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:776c81365d8979f2ca91127ff47d38362c7a1682643bb70d9f221a35b4c1f05c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6deb824bf0fdd43b4c1d89e8b8601e05b1b09dd1b89922fbb6e3ca7ef7bdfea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:35b685780d05bc62b306783208ceea2a99b78ec1e38099d25ab9e27fe64fc2e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:38b7e234acdefe69fa3c01d50447aecf4314443f72410df6b81d9b7d66d8281c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5cbf178c6594a373950ddf0e3c81452aa4163b6e4ebf30a735207a2523cf918a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:93c75b2ad4a4b85855a1e63cf1e1ca7e0a7b615c771b857d9bfebb7651d18871_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:3605def86edd8ea7f97a2e46ead0764197dfb13a9b5fd00052d91e5eb7e9fafb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e1fa556d3b407ce1489283a4111eafad610475cbb18d17e238cd20bdc24910dd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e4ac1d06fcc633033dbac0db2749c09678ef71c109c1efd75ad31ecda396f721_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:edb5c32f8172251350021de785fabeb9a00a0d8250758f7857f9ea675c74f540_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:2db7e64a9345be2d431e0ba15601ee9cc8d8dfc219a757a0f7a664d521e8adda_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:67bc0d4e819af067717ddcf765b4d565ba2f953c65633c122577fe192a6bea0b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:7c48b8be9465a9f1b14db62cb2a1b4f2799df16407f306e9ed085946ebbd8d30_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a4770ea3815a2528058f98f6952dbf58ff2d7ac12fd36f8119568c03eb5b0263_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:0100f495023b4ede4318d4cf15f68b9e33f0ba0b48331ce8cebf9250152f3211_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:222f4a27a841f4431f3fb204e1c7d3b55fa030495319514eecb26292c3beb0a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:db078402e0278f7dc1a0626bf3afe14c2c4221dd438708136de4a93bb0ee70c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fcdcc373e6c1ee28739e8883c4c6b447267987e34b9404ae693cf4331aeac76a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c4059a5b02bdd9d01fed234cde35e9c45e812cc4ee5be35f00ba806f0d84f3d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f553364c160f85a326a63ef456658486e384c56ed0b1af539ebea2d2e503c81e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30af84e015601d39ad0b62c14cd5ad901ae6a4450ff247ab265b78eb8fac39a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:eeb09578f651f65f8f8216cac46869034bf17bff001a2ed73d96d11772532666_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:3dc64c49b4ebe48c00a1e75fdc94bbd8828adf9118e5af8d03d51a245f1112a6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:6e36fd9c87b45f4257f9853d69dc676dfd561c408ddbfbf1c247579a62c54350_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:adf0ed6be1fc6efe5c78191efc5094efd8663b0c3ec3815f7c824f9919045c5b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c604800d8da5342d1a2d3c8d684844d66c4df5d03b686b0666e109aab6dc984b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:8d5c598393328496de5fafd9117d9d4f9fa4fcfb8c5418ade4df1604de18207a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a91a92813ffb55ea55c55c27085ceceaef7734567cb916fb9bdbb18d59a10e12_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:d456e8be4a3a28609cd29dda8c9f6fa46130c8a3d421e23c97d762d089bbe5b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:ed64b71e99e3e436e96d00d475870df08877316e3f38df129dfb62d40ef4c45b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:50035776c45729ee560a831d79b3c8afc24a5691167e8c583eadea2474e23641_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:529836546956099d5d3b03861187b4bf92be0fcce6fbe95e5d229d6d5923c28c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:53f6f7a759a936966f39d97e1a7c0b10c86e02122557d710f14f0289f0b673a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f56649d00f40db610f0a6fae6827575adbf58b70368c0dad73c794a3c77a35df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:0e8ab3244ad637aba8448bd161d3a06c85a68afe7ea08e25064c4ed16c7ef650_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:280c976f5b58de0920c9ec4e2284cab56077dc975a46146aeb53509c4b302b83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:6b5e8518bc692c328963e632a4f0a910761ec536a8f4ed717a576c4bac3ce963_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:df7c038aab12b439d56efe938bc673a24018e023a8de1e1c7aa416e042c55561_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0d7ec956e636933e576c00924726bd24a267bf46a9510a9e50b7a3e79f70daca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:467ed1130abf80b62f8e0537e9977658d22dbc3cf7cd40ca96e3a54d878feedb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b2d5d8ec572abb2c30a98be0de1e11ca1a2adf0c6faa3347c6a0d2ef784afeac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c915c06f28341ba8aa9a1c00fc49504a8816b0610b2cf5304f89fcedca8bc478_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:2a325b078b73e9bfd6e92f8154c4177aeb60dbdd59657227ca37ab1bd46827af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:671a3dabbb5b5f6b2b4620ce823d6928b65506f2acffa0104a4c2d149a223211_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:7d65d75e025be1ea2f6d82d14f859786f448e619422b10f68cfd4f68ae786a21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:999c307a79cabd8e9553f5d807d4125df1fef3153ecfce17cca871d5f8051eeb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:758f10fd65669acf6c81de7d53ffacf7de3b2e81498cd0f39990debd9110b69d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:9d5b06a17a27074c71ca8c4005e1b6b04a4ca488eb2571279805cffc56656c03_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:dad9ed95f9fbba93ad7fe74761b007ca7b4da4c59a73abb1fda223e4c03a422d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fcfa3ae6a7face4161aba93179d149a20d144e8a2a8564650750b4d8f0013496_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:4bd8b3ac46a8db114f1910d03bab222e17e18db8544e8d54ae8a0b1d0e24fa1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:97832034bbb82111434b4fbfe1444407ada2a083429a7efba57d55b4d610537b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:a52f59971348bb0e5766a857c16818b379c404c3af300bc697ae1fc8e3f54f15_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:b65119938857e8150f90c3b6bbc4e92d9646b9bc6c39f467e0ba3e4662e28036_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:633d1d92e36d87a1f8adcc69c9b9810ef84ecda5b85dbfbd6eca2bd4e97a2ee7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:6ef9d153bbf3c65f132cd7d29dbd58d01019615f03eb07967023e446bdced8c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:f70052e4ccac8f01affc7e0f1eaf9d14b4eb15544b0b5509fefb4e47a2a820ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:12d9ca6fa5893e68c553fd8909113ee1a29a96d3ff3bf32f3824791681de15d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:3af4fce899db69f0df6699cec4a3e4b26439c6a18de30232f1ff145f00d5d68a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d2fe0edcc847e8cb3727941b91149007f9c669b0bec5847a425e82212d095d79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:0889d518d954d62033fefe6df255f5ba816dec01d415d13a5634132f05eeb344_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3115448f5481f6842c97e13aaef4b9a2925a54f6998b9f48000a74faa63bbfc9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3a07fa757f01f4899f9c27883f06f4f7ab567310f5ae6bd44e96eab22d6dd01b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:95c7e0528adda5ba04775f32106977c5e3d95383b6553d57c703fc3e74d50a18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:04bb985f7378665fe9840691d2ab90465b726431a39518dd087d3689d6817a6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a008fe2d2aba4b5f793d1d795f04174dfecc2633856129d3786a18b641a34f2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c368220ebde4dcf75123e81eb9dc4e13544f64edaa79c28a21c93126e58239f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d4b20eee8037ab15a8e786ef3db3b1fddfc936fc59f249d893227dd1659d1ef5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3f29b35a62f679a89a6cf199988f89e736707012542d72aa1761c89eef1909fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6c1b9f3900fd21b51aab4429b50959da2eec8d1fa64c70e1cc8e5ebe72a24cbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6d498d0d92f88fd51112e5b14233bd66880e081569a99000e508d5811d3afa56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6e94ce6c4e49d6de3e1bdbc145712ac8d1a45cc841785b20cb7605c35bef5d35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1273f2e53f3d42e861050972fb3612e33d8ec159e29fa08bd7dd0e6f896b17a6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c814b9a5380c33f9da6d646d956f2ba425d1eed63e718b44f574b1c2f3f0ea5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f005f7a9a4bbe701274a5e59e7e0e3c3a72426b19560653575ac6caa0e28cdbf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fc078ca1f72f833ac498c30a1de5a4c7500c83cd94a3008445373266bfe56acd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2af9330004a06971944971326d1e8377cbbf4725f9d703db266abd7e5359d7ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:89971adb04a2e0a67571cf02489e6e383ae971000028d30305e584aa03784348_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:a3c950362ae071e71de468b7f619678386edfdfd0855d0df075f99d993132720_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:b35a1300569e0905cb750b7217145c94e246036cd498993ead14d07e645d1fb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7c1c1e7d2af533ee43c92204d4e87104f305cbde1af7c8531fa8f1299c16a3ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:b1d620feb486ef28423ee30cf03dedd26c30f589b12d87fff47a19cbcde4c3c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d13a4baf04347af18f6eaa4cbdcd5f847ebcd396efedeb89ecf1393cd1e378f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ecceb25263477c9c9aa06a38df00fc004dd471ee9cccfbdfbc280c29d62f275b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:932692970cab5f163ce35ed82c9cbbb70c8a7b2224b82d4bab39c86aaef4609b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:9d157aa28bd24d12e49d76723cb91a19f9bc840a02d4850f94b9110530b76e7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:b5c8be4282dce9ca844df81ff8696bdd5fd25bb58b51c2061d3a3643e3f8dc2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6265c12a8b31624fe4257abad1889839e2e1612167dafa7274b8d614fdfee64e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:70857d797ad076f5f20217e39673aa6abb0647ecbaf95ab8252075f43a68c073_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ce8fe5503b8bcb1bb338f06dc100f0bed5f85340eda1b73adb58d92e7aaec22c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3b597f3bd5af1c355f4e7c0ed012ca06697cbc37b9bf9a23a5c5f4d0d8162321_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3fe5d5a4ba52d689ec4b106ed8899e5fd75759671a6192641e2e24873707db77_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:557cefcdfef854b4ef381acf2f7de1bd1cf3f29a54398616043c6abcbc8a81f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0bdf015e02c235268ce9fefafcb7b841266f434448ae5aaa9ad66e49ed36a39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:22969e24366f0b43d2cf11c30157842f595bc54976ac096ede75fbdcc5d4985f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3b487d6d2f8191f74b599cd30b8c982010c10409fd291eb1dc4c6c7b683f7cc0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7da1135f319c0f3086b822465dfe0d5e1d1d7b547b92dbd42dee8286c8f5c68f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:e3b0258cdf56b709000aad847e7995099da913bf27676c138a5f9b0ea585bcac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a26f61e6063fca59ba6ab989888880ce959e81bb54b552ef7bd81a89d69b2b77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c115cba6d9973e91e208f56a315676b56657e5cf7863d19c0a7103f13edb9b44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ccb1f539fd2f75a062fc2ed4b0d7f27c360aef121f933975e9ef9235af453934_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:e7a8657e23e6dd922ea658aa52e8145254cd5753589e5ab3732a0d1d574e46f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:0ac2a7fd509e0f905d2807f93051fef189de6febdf428b8c14e2618e6b70fe7f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:18bc241751cb6151f5b879ca160aeea4f08290e3fa0922e2c01eded3a9c44919_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:ff30de805aae0da846920093dafb42ca2266b48d7b232ce774070fc1c0da5709_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:10efa408842bcf0b21fad1e720b1a05dc849b5965a891ac470cb8540f517a54a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:61967b9608d0920d92492b9fca096e3598f389329db9cf64c2eb6bd75b846777_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:77f97aa79f52695ab5dfc605b780692847051e9dd679789a0f355510ff6cfe51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:82c20bceaf5cb9e4d3e98fa58c98a679c05d55482519ea3fa080aabeab34cdf7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:ba573576b17d3230c3893819b2e570a0f5c2c9760935b2c882c57b2da99696f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:d83381f446c0dd432b817203f7e86897fd07a8e5bae54a537edb4712fa6fc264_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:88f1d696cd44e19a0852b3d51ba224129b920c5d1859870dc36de53e3cb95c84_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:8acaa460c5ae992714e25d957948477118dfa2eb6adfd0d84a457b9bfdba54d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b23ea9fa8eaa75fb8e0acfa6f45ff360a8784627cc3fad5d608a80181f193c3f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b70ef1d999b9f5308ecc361d6e4b74c8da65658d1d6802c731b6aa3a24725dc0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:402f0bc32520a6391d25b5fd70e323df8f810aaa32d6f4a4ec190c32f851a153_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:5d95ebdf8eba75315f3e296f24533697ca66e3b828b886e12f0957d197ee388a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:637f6b5eb27d7a38e108b070130b6a52c0f44923d584ca65534cd88623d86f40_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6c87ec100726f3a8c65475666e604062f391ce3a8d9f516eae64ef7d51247fba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:61059dc3377fbd1c6d7426712242943cec1ae8a76752709afd421a618e143b47_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:baa34b4e2cccff9bc62d82eb6552639010785d44cb019acc69866cf2aaaa3806_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:fe4370f51955f5a8b5588b7e590a9521cb792066f6259ea0b2b032ac957be413_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:753de30d0d2a7db211426c9ede26bda02b91709680ca5acd2334c921e08fc088_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8d3a4e42a1ab884c9bbc9933b66db18c60e75a344a2d0570b10923c95d70fdb8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9a3c8ef3d81076660d34fdeb0f7b2d7ec088383fb8666f843eff5c6efdb9016b_arm64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.14.67 is now available with updates to packages and images that fix several bugs.\n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.14.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.14.67. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:25008\n\nSecurity Fix(es):\n\n* Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code (CVE-2026-35469)\n* google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation (CVE-2026-33186)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAll OpenShift Container Platform 4.14 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:25009",
"url": "https://access.redhat.com/errata/RHSA-2026:25009"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35469",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_25009.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.14.67 security and extras update",
"tracking": {
"current_release_date": "2026-06-29T17:50:45+00:00",
"generator": {
"date": "2026-06-29T17:50:45+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:25009",
"initial_release_date": "2026-06-17T07:57:34+00:00",
"revision_history": [
{
"date": "2026-06-17T07:57:34+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-17T07:58:15+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:50:45+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.14",
"product": {
"name": "Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.14::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3A6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/cloud-event-proxy-rhel8\u0026tag=1780955488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3A6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8\u0026tag=1780955488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a91a92813ffb55ea55c55c27085ceceaef7734567cb916fb9bdbb18d59a10e12_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a91a92813ffb55ea55c55c27085ceceaef7734567cb916fb9bdbb18d59a10e12_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a91a92813ffb55ea55c55c27085ceceaef7734567cb916fb9bdbb18d59a10e12_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-operator@sha256%3Aa91a92813ffb55ea55c55c27085ceceaef7734567cb916fb9bdbb18d59a10e12?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-operator\u0026tag=1780954465"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:df7c038aab12b439d56efe938bc673a24018e023a8de1e1c7aa416e042c55561_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:df7c038aab12b439d56efe938bc673a24018e023a8de1e1c7aa416e042c55561_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:df7c038aab12b439d56efe938bc673a24018e023a8de1e1c7aa416e042c55561_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8@sha256%3Adf7c038aab12b439d56efe938bc673a24018e023a8de1e1c7aa416e042c55561?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8\u0026tag=1780959721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:50035776c45729ee560a831d79b3c8afc24a5691167e8c583eadea2474e23641_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:50035776c45729ee560a831d79b3c8afc24a5691167e8c583eadea2474e23641_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:50035776c45729ee560a831d79b3c8afc24a5691167e8c583eadea2474e23641_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8-operator@sha256%3A50035776c45729ee560a831d79b3c8afc24a5691167e8c583eadea2474e23641?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator\u0026tag=1780956955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:61967b9608d0920d92492b9fca096e3598f389329db9cf64c2eb6bd75b846777_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:61967b9608d0920d92492b9fca096e3598f389329db9cf64c2eb6bd75b846777_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:61967b9608d0920d92492b9fca096e3598f389329db9cf64c2eb6bd75b846777_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni@sha256%3A61967b9608d0920d92492b9fca096e3598f389329db9cf64c2eb6bd75b846777?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni\u0026tag=1780954990"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4601d8011ff56e11bb8821db387d98354312a371bd8670cf915bfa9dd3de99be_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4601d8011ff56e11bb8821db387d98354312a371bd8670cf915bfa9dd3de99be_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4601d8011ff56e11bb8821db387d98354312a371bd8670cf915bfa9dd3de99be_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A4601d8011ff56e11bb8821db387d98354312a371bd8670cf915bfa9dd3de99be?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1781009434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dfa66f12770ded49cbc84646d0c22440a157fcc71704d9162e1336a26331d9fc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dfa66f12770ded49cbc84646d0c22440a157fcc71704d9162e1336a26331d9fc_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dfa66f12770ded49cbc84646d0c22440a157fcc71704d9162e1336a26331d9fc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Adfa66f12770ded49cbc84646d0c22440a157fcc71704d9162e1336a26331d9fc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1781011186"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:70857d797ad076f5f20217e39673aa6abb0647ecbaf95ab8252075f43a68c073_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:70857d797ad076f5f20217e39673aa6abb0647ecbaf95ab8252075f43a68c073_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:70857d797ad076f5f20217e39673aa6abb0647ecbaf95ab8252075f43a68c073_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A70857d797ad076f5f20217e39673aa6abb0647ecbaf95ab8252075f43a68c073?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1781009142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6d498d0d92f88fd51112e5b14233bd66880e081569a99000e508d5811d3afa56_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6d498d0d92f88fd51112e5b14233bd66880e081569a99000e508d5811d3afa56_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6d498d0d92f88fd51112e5b14233bd66880e081569a99000e508d5811d3afa56_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A6d498d0d92f88fd51112e5b14233bd66880e081569a99000e508d5811d3afa56?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1781009040"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c814b9a5380c33f9da6d646d956f2ba425d1eed63e718b44f574b1c2f3f0ea5a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c814b9a5380c33f9da6d646d956f2ba425d1eed63e718b44f574b1c2f3f0ea5a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c814b9a5380c33f9da6d646d956f2ba425d1eed63e718b44f574b1c2f3f0ea5a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Ac814b9a5380c33f9da6d646d956f2ba425d1eed63e718b44f574b1c2f3f0ea5a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1781011673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:b35a1300569e0905cb750b7217145c94e246036cd498993ead14d07e645d1fb2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:b35a1300569e0905cb750b7217145c94e246036cd498993ead14d07e645d1fb2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:b35a1300569e0905cb750b7217145c94e246036cd498993ead14d07e645d1fb2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Ab35a1300569e0905cb750b7217145c94e246036cd498993ead14d07e645d1fb2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1781011186"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:7c48b8be9465a9f1b14db62cb2a1b4f2799df16407f306e9ed085946ebbd8d30_arm64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:7c48b8be9465a9f1b14db62cb2a1b4f2799df16407f306e9ed085946ebbd8d30_arm64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:7c48b8be9465a9f1b14db62cb2a1b4f2799df16407f306e9ed085946ebbd8d30_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel8@sha256%3A7c48b8be9465a9f1b14db62cb2a1b4f2799df16407f306e9ed085946ebbd8d30?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel8\u0026tag=1780959932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:9235d5f0629ffad8a5af4e8a50660751684ce91eae489122c2f89bb79ee833fc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:9235d5f0629ffad8a5af4e8a50660751684ce91eae489122c2f89bb79ee833fc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:9235d5f0629ffad8a5af4e8a50660751684ce91eae489122c2f89bb79ee833fc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery@sha256%3A9235d5f0629ffad8a5af4e8a50660751684ce91eae489122c2f89bb79ee833fc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery\u0026tag=1780956818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:db078402e0278f7dc1a0626bf3afe14c2c4221dd438708136de4a93bb0ee70c4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:db078402e0278f7dc1a0626bf3afe14c2c4221dd438708136de4a93bb0ee70c4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:db078402e0278f7dc1a0626bf3afe14c2c4221dd438708136de4a93bb0ee70c4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3Adb078402e0278f7dc1a0626bf3afe14c2c4221dd438708136de4a93bb0ee70c4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-operator\u0026tag=1780963391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:6e36fd9c87b45f4257f9853d69dc676dfd561c408ddbfbf1c247579a62c54350_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:6e36fd9c87b45f4257f9853d69dc676dfd561c408ddbfbf1c247579a62c54350_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:6e36fd9c87b45f4257f9853d69dc676dfd561c408ddbfbf1c247579a62c54350_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3A6e36fd9c87b45f4257f9853d69dc676dfd561c408ddbfbf1c247579a62c54350?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity\u0026tag=1780961435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:7d65d75e025be1ea2f6d82d14f859786f448e619422b10f68cfd4f68ae786a21_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:7d65d75e025be1ea2f6d82d14f859786f448e619422b10f68cfd4f68ae786a21_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:7d65d75e025be1ea2f6d82d14f859786f448e619422b10f68cfd4f68ae786a21_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3A7d65d75e025be1ea2f6d82d14f859786f448e619422b10f68cfd4f68ae786a21?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy\u0026tag=1780962923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:4bd8b3ac46a8db114f1910d03bab222e17e18db8544e8d54ae8a0b1d0e24fa1f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:4bd8b3ac46a8db114f1910d03bab222e17e18db8544e8d54ae8a0b1d0e24fa1f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:4bd8b3ac46a8db114f1910d03bab222e17e18db8544e8d54ae8a0b1d0e24fa1f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3A4bd8b3ac46a8db114f1910d03bab222e17e18db8544e8d54ae8a0b1d0e24fa1f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router\u0026tag=1780961042"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:3115448f5481f6842c97e13aaef4b9a2925a54f6998b9f48000a74faa63bbfc9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:3115448f5481f6842c97e13aaef4b9a2925a54f6998b9f48000a74faa63bbfc9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:3115448f5481f6842c97e13aaef4b9a2925a54f6998b9f48000a74faa63bbfc9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3A3115448f5481f6842c97e13aaef4b9a2925a54f6998b9f48000a74faa63bbfc9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-operator\u0026tag=1780966032"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ecceb25263477c9c9aa06a38df00fc004dd471ee9cccfbdfbc280c29d62f275b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ecceb25263477c9c9aa06a38df00fc004dd471ee9cccfbdfbc280c29d62f275b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ecceb25263477c9c9aa06a38df00fc004dd471ee9cccfbdfbc280c29d62f275b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3Aecceb25263477c9c9aa06a38df00fc004dd471ee9cccfbdfbc280c29d62f275b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8\u0026tag=1780954673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:04bb985f7378665fe9840691d2ab90465b726431a39518dd087d3689d6817a6a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:04bb985f7378665fe9840691d2ab90465b726431a39518dd087d3689d6817a6a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:04bb985f7378665fe9840691d2ab90465b726431a39518dd087d3689d6817a6a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A04bb985f7378665fe9840691d2ab90465b726431a39518dd087d3689d6817a6a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1781009462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:748bda8560c46129d59afd0680c6ce7421d5bbe007cde1e750a8dc9c417cc88e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:748bda8560c46129d59afd0680c6ce7421d5bbe007cde1e750a8dc9c417cc88e_arm64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:748bda8560c46129d59afd0680c6ce7421d5bbe007cde1e750a8dc9c417cc88e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A748bda8560c46129d59afd0680c6ce7421d5bbe007cde1e750a8dc9c417cc88e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1781011204"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c4059a5b02bdd9d01fed234cde35e9c45e812cc4ee5be35f00ba806f0d84f3d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c4059a5b02bdd9d01fed234cde35e9c45e812cc4ee5be35f00ba806f0d84f3d9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c4059a5b02bdd9d01fed234cde35e9c45e812cc4ee5be35f00ba806f0d84f3d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel8@sha256%3Ac4059a5b02bdd9d01fed234cde35e9c45e812cc4ee5be35f00ba806f0d84f3d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8\u0026tag=1780955356"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:eeb09578f651f65f8f8216cac46869034bf17bff001a2ed73d96d11772532666_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:eeb09578f651f65f8f8216cac46869034bf17bff001a2ed73d96d11772532666_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:eeb09578f651f65f8f8216cac46869034bf17bff001a2ed73d96d11772532666_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel8-operator@sha256%3Aeeb09578f651f65f8f8216cac46869034bf17bff001a2ed73d96d11772532666?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator\u0026tag=1780954539"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b2d5d8ec572abb2c30a98be0de1e11ca1a2adf0c6faa3347c6a0d2ef784afeac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b2d5d8ec572abb2c30a98be0de1e11ca1a2adf0c6faa3347c6a0d2ef784afeac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b2d5d8ec572abb2c30a98be0de1e11ca1a2adf0c6faa3347c6a0d2ef784afeac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3Ab2d5d8ec572abb2c30a98be0de1e11ca1a2adf0c6faa3347c6a0d2ef784afeac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8\u0026tag=1780965271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:758f10fd65669acf6c81de7d53ffacf7de3b2e81498cd0f39990debd9110b69d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:758f10fd65669acf6c81de7d53ffacf7de3b2e81498cd0f39990debd9110b69d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:758f10fd65669acf6c81de7d53ffacf7de3b2e81498cd0f39990debd9110b69d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3A758f10fd65669acf6c81de7d53ffacf7de3b2e81498cd0f39990debd9110b69d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy\u0026tag=1780955409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:cdf612d1d3001b7e2eab47bee66395dc626a6a41421a9fff247ac7f1e530c281_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:cdf612d1d3001b7e2eab47bee66395dc626a6a41421a9fff247ac7f1e530c281_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:cdf612d1d3001b7e2eab47bee66395dc626a6a41421a9fff247ac7f1e530c281_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Acdf612d1d3001b7e2eab47bee66395dc626a6a41421a9fff247ac7f1e530c281?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1781008024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d2fe0edcc847e8cb3727941b91149007f9c669b0bec5847a425e82212d095d79_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d2fe0edcc847e8cb3727941b91149007f9c669b0bec5847a425e82212d095d79_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d2fe0edcc847e8cb3727941b91149007f9c669b0bec5847a425e82212d095d79_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8@sha256%3Ad2fe0edcc847e8cb3727941b91149007f9c669b0bec5847a425e82212d095d79?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8\u0026tag=1780956405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:6ef9d153bbf3c65f132cd7d29dbd58d01019615f03eb07967023e446bdced8c3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:6ef9d153bbf3c65f132cd7d29dbd58d01019615f03eb07967023e446bdced8c3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:6ef9d153bbf3c65f132cd7d29dbd58d01019615f03eb07967023e446bdced8c3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8-operator@sha256%3A6ef9d153bbf3c65f132cd7d29dbd58d01019615f03eb07967023e446bdced8c3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator\u0026tag=1780956562"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:3605def86edd8ea7f97a2e46ead0764197dfb13a9b5fd00052d91e5eb7e9fafb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:3605def86edd8ea7f97a2e46ead0764197dfb13a9b5fd00052d91e5eb7e9fafb_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:3605def86edd8ea7f97a2e46ead0764197dfb13a9b5fd00052d91e5eb7e9fafb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A3605def86edd8ea7f97a2e46ead0764197dfb13a9b5fd00052d91e5eb7e9fafb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1781007977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:93c75b2ad4a4b85855a1e63cf1e1ca7e0a7b615c771b857d9bfebb7651d18871_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:93c75b2ad4a4b85855a1e63cf1e1ca7e0a7b615c771b857d9bfebb7651d18871_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:93c75b2ad4a4b85855a1e63cf1e1ca7e0a7b615c771b857d9bfebb7651d18871_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A93c75b2ad4a4b85855a1e63cf1e1ca7e0a7b615c771b857d9bfebb7651d18871?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1781010941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:e3b0258cdf56b709000aad847e7995099da913bf27676c138a5f9b0ea585bcac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:e3b0258cdf56b709000aad847e7995099da913bf27676c138a5f9b0ea585bcac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:e3b0258cdf56b709000aad847e7995099da913bf27676c138a5f9b0ea585bcac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8@sha256%3Ae3b0258cdf56b709000aad847e7995099da913bf27676c138a5f9b0ea585bcac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8\u0026tag=1780955025"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:557cefcdfef854b4ef381acf2f7de1bd1cf3f29a54398616043c6abcbc8a81f0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:557cefcdfef854b4ef381acf2f7de1bd1cf3f29a54398616043c6abcbc8a81f0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:557cefcdfef854b4ef381acf2f7de1bd1cf3f29a54398616043c6abcbc8a81f0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8-operator@sha256%3A557cefcdfef854b4ef381acf2f7de1bd1cf3f29a54398616043c6abcbc8a81f0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator\u0026tag=1780965806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a26f61e6063fca59ba6ab989888880ce959e81bb54b552ef7bd81a89d69b2b77_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a26f61e6063fca59ba6ab989888880ce959e81bb54b552ef7bd81a89d69b2b77_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a26f61e6063fca59ba6ab989888880ce959e81bb54b552ef7bd81a89d69b2b77_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel8@sha256%3Aa26f61e6063fca59ba6ab989888880ce959e81bb54b552ef7bd81a89d69b2b77?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8\u0026tag=1780961686"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:9d157aa28bd24d12e49d76723cb91a19f9bc840a02d4850f94b9110530b76e7e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:9d157aa28bd24d12e49d76723cb91a19f9bc840a02d4850f94b9110530b76e7e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:9d157aa28bd24d12e49d76723cb91a19f9bc840a02d4850f94b9110530b76e7e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-operator@sha256%3A9d157aa28bd24d12e49d76723cb91a19f9bc840a02d4850f94b9110530b76e7e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-operator\u0026tag=1781006893"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:61059dc3377fbd1c6d7426712242943cec1ae8a76752709afd421a618e143b47_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:61059dc3377fbd1c6d7426712242943cec1ae8a76752709afd421a618e143b47_arm64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:61059dc3377fbd1c6d7426712242943cec1ae8a76752709afd421a618e143b47_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel8@sha256%3A61059dc3377fbd1c6d7426712242943cec1ae8a76752709afd421a618e143b47?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel8\u0026tag=1780962923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9a3c8ef3d81076660d34fdeb0f7b2d7ec088383fb8666f843eff5c6efdb9016b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9a3c8ef3d81076660d34fdeb0f7b2d7ec088383fb8666f843eff5c6efdb9016b_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9a3c8ef3d81076660d34fdeb0f7b2d7ec088383fb8666f843eff5c6efdb9016b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A9a3c8ef3d81076660d34fdeb0f7b2d7ec088383fb8666f843eff5c6efdb9016b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1781009090"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:18bc241751cb6151f5b879ca160aeea4f08290e3fa0922e2c01eded3a9c44919_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:18bc241751cb6151f5b879ca160aeea4f08290e3fa0922e2c01eded3a9c44919_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:18bc241751cb6151f5b879ca160aeea4f08290e3fa0922e2c01eded3a9c44919_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller@sha256%3A18bc241751cb6151f5b879ca160aeea4f08290e3fa0922e2c01eded3a9c44919?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller\u0026tag=1780955729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:e6a4680ab3d78db90ff3cf6502c8e1987844f5c5d8a2c920d2aeb9c8607f8d5e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:e6a4680ab3d78db90ff3cf6502c8e1987844f5c5d8a2c920d2aeb9c8607f8d5e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:e6a4680ab3d78db90ff3cf6502c8e1987844f5c5d8a2c920d2aeb9c8607f8d5e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon@sha256%3Ae6a4680ab3d78db90ff3cf6502c8e1987844f5c5d8a2c920d2aeb9c8607f8d5e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon\u0026tag=1780955979"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:d83381f446c0dd432b817203f7e86897fd07a8e5bae54a537edb4712fa6fc264_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:d83381f446c0dd432b817203f7e86897fd07a8e5bae54a537edb4712fa6fc264_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:d83381f446c0dd432b817203f7e86897fd07a8e5bae54a537edb4712fa6fc264_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin@sha256%3Ad83381f446c0dd432b817203f7e86897fd07a8e5bae54a537edb4712fa6fc264?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin\u0026tag=1780955821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:cd6243cac5a039740a5b47baf91141ed3e70cb5675cec93c93434201d374a6f2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:cd6243cac5a039740a5b47baf91141ed3e70cb5675cec93c93434201d374a6f2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:cd6243cac5a039740a5b47baf91141ed3e70cb5675cec93c93434201d374a6f2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-operator@sha256%3Acd6243cac5a039740a5b47baf91141ed3e70cb5675cec93c93434201d374a6f2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-operator\u0026tag=1781006909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:b4a51cacc8a06fb6588ea140e3b50ff0166554e8d7b38c77a13be4bab9885356_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:b4a51cacc8a06fb6588ea140e3b50ff0166554e8d7b38c77a13be4bab9885356_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:b4a51cacc8a06fb6588ea140e3b50ff0166554e8d7b38c77a13be4bab9885356_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook@sha256%3Ab4a51cacc8a06fb6588ea140e3b50ff0166554e8d7b38c77a13be4bab9885356?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook\u0026tag=1780956441"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:402f0bc32520a6391d25b5fd70e323df8f810aaa32d6f4a4ec190c32f851a153_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:402f0bc32520a6391d25b5fd70e323df8f810aaa32d6f4a4ec190c32f851a153_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:402f0bc32520a6391d25b5fd70e323df8f810aaa32d6f4a4ec190c32f851a153_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8@sha256%3A402f0bc32520a6391d25b5fd70e323df8f810aaa32d6f4a4ec190c32f851a153?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8\u0026tag=1780959659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:8acaa460c5ae992714e25d957948477118dfa2eb6adfd0d84a457b9bfdba54d2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:8acaa460c5ae992714e25d957948477118dfa2eb6adfd0d84a457b9bfdba54d2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:8acaa460c5ae992714e25d957948477118dfa2eb6adfd0d84a457b9bfdba54d2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8-operator@sha256%3A8acaa460c5ae992714e25d957948477118dfa2eb6adfd0d84a457b9bfdba54d2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator\u0026tag=1780955015"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3Aab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/cloud-event-proxy-rhel8\u0026tag=1780955488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3Aab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8\u0026tag=1780955488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:ed64b71e99e3e436e96d00d475870df08877316e3f38df129dfb62d40ef4c45b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:ed64b71e99e3e436e96d00d475870df08877316e3f38df129dfb62d40ef4c45b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:ed64b71e99e3e436e96d00d475870df08877316e3f38df129dfb62d40ef4c45b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-operator@sha256%3Aed64b71e99e3e436e96d00d475870df08877316e3f38df129dfb62d40ef4c45b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-operator\u0026tag=1780954465"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:6b5e8518bc692c328963e632a4f0a910761ec536a8f4ed717a576c4bac3ce963_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:6b5e8518bc692c328963e632a4f0a910761ec536a8f4ed717a576c4bac3ce963_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:6b5e8518bc692c328963e632a4f0a910761ec536a8f4ed717a576c4bac3ce963_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8@sha256%3A6b5e8518bc692c328963e632a4f0a910761ec536a8f4ed717a576c4bac3ce963?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8\u0026tag=1780959721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:529836546956099d5d3b03861187b4bf92be0fcce6fbe95e5d229d6d5923c28c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:529836546956099d5d3b03861187b4bf92be0fcce6fbe95e5d229d6d5923c28c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:529836546956099d5d3b03861187b4bf92be0fcce6fbe95e5d229d6d5923c28c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8-operator@sha256%3A529836546956099d5d3b03861187b4bf92be0fcce6fbe95e5d229d6d5923c28c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator\u0026tag=1780956955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:10efa408842bcf0b21fad1e720b1a05dc849b5965a891ac470cb8540f517a54a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:10efa408842bcf0b21fad1e720b1a05dc849b5965a891ac470cb8540f517a54a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:10efa408842bcf0b21fad1e720b1a05dc849b5965a891ac470cb8540f517a54a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni@sha256%3A10efa408842bcf0b21fad1e720b1a05dc849b5965a891ac470cb8540f517a54a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni\u0026tag=1780954990"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7fe48ad9f89f61203bd0ee397ccf7c5d9d37ec30b05ba837dc1089fe6ee67068_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7fe48ad9f89f61203bd0ee397ccf7c5d9d37ec30b05ba837dc1089fe6ee67068_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7fe48ad9f89f61203bd0ee397ccf7c5d9d37ec30b05ba837dc1089fe6ee67068_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A7fe48ad9f89f61203bd0ee397ccf7c5d9d37ec30b05ba837dc1089fe6ee67068?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1781009434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3965aaeeb958ccea911ff08d45da2c16ef953f6a473eb69b790fa1afa7c0b76d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3965aaeeb958ccea911ff08d45da2c16ef953f6a473eb69b790fa1afa7c0b76d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3965aaeeb958ccea911ff08d45da2c16ef953f6a473eb69b790fa1afa7c0b76d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A3965aaeeb958ccea911ff08d45da2c16ef953f6a473eb69b790fa1afa7c0b76d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1781011186"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ce8fe5503b8bcb1bb338f06dc100f0bed5f85340eda1b73adb58d92e7aaec22c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ce8fe5503b8bcb1bb338f06dc100f0bed5f85340eda1b73adb58d92e7aaec22c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ce8fe5503b8bcb1bb338f06dc100f0bed5f85340eda1b73adb58d92e7aaec22c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3Ace8fe5503b8bcb1bb338f06dc100f0bed5f85340eda1b73adb58d92e7aaec22c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1781009142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6c1b9f3900fd21b51aab4429b50959da2eec8d1fa64c70e1cc8e5ebe72a24cbd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6c1b9f3900fd21b51aab4429b50959da2eec8d1fa64c70e1cc8e5ebe72a24cbd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6c1b9f3900fd21b51aab4429b50959da2eec8d1fa64c70e1cc8e5ebe72a24cbd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A6c1b9f3900fd21b51aab4429b50959da2eec8d1fa64c70e1cc8e5ebe72a24cbd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1781009040"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1273f2e53f3d42e861050972fb3612e33d8ec159e29fa08bd7dd0e6f896b17a6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1273f2e53f3d42e861050972fb3612e33d8ec159e29fa08bd7dd0e6f896b17a6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1273f2e53f3d42e861050972fb3612e33d8ec159e29fa08bd7dd0e6f896b17a6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A1273f2e53f3d42e861050972fb3612e33d8ec159e29fa08bd7dd0e6f896b17a6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1781011673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:89971adb04a2e0a67571cf02489e6e383ae971000028d30305e584aa03784348_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:89971adb04a2e0a67571cf02489e6e383ae971000028d30305e584aa03784348_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:89971adb04a2e0a67571cf02489e6e383ae971000028d30305e584aa03784348_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A89971adb04a2e0a67571cf02489e6e383ae971000028d30305e584aa03784348?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1781011186"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a4770ea3815a2528058f98f6952dbf58ff2d7ac12fd36f8119568c03eb5b0263_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a4770ea3815a2528058f98f6952dbf58ff2d7ac12fd36f8119568c03eb5b0263_ppc64le",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a4770ea3815a2528058f98f6952dbf58ff2d7ac12fd36f8119568c03eb5b0263_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel8@sha256%3Aa4770ea3815a2528058f98f6952dbf58ff2d7ac12fd36f8119568c03eb5b0263?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel8\u0026tag=1780959932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:ec49da4e5124996506d50392d8b7078d00c5862bea5e229e7351b5e0e6532c6f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:ec49da4e5124996506d50392d8b7078d00c5862bea5e229e7351b5e0e6532c6f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:ec49da4e5124996506d50392d8b7078d00c5862bea5e229e7351b5e0e6532c6f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery@sha256%3Aec49da4e5124996506d50392d8b7078d00c5862bea5e229e7351b5e0e6532c6f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery\u0026tag=1780956818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:0100f495023b4ede4318d4cf15f68b9e33f0ba0b48331ce8cebf9250152f3211_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:0100f495023b4ede4318d4cf15f68b9e33f0ba0b48331ce8cebf9250152f3211_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:0100f495023b4ede4318d4cf15f68b9e33f0ba0b48331ce8cebf9250152f3211_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3A0100f495023b4ede4318d4cf15f68b9e33f0ba0b48331ce8cebf9250152f3211?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-operator\u0026tag=1780963391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:3dc64c49b4ebe48c00a1e75fdc94bbd8828adf9118e5af8d03d51a245f1112a6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:3dc64c49b4ebe48c00a1e75fdc94bbd8828adf9118e5af8d03d51a245f1112a6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:3dc64c49b4ebe48c00a1e75fdc94bbd8828adf9118e5af8d03d51a245f1112a6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3A3dc64c49b4ebe48c00a1e75fdc94bbd8828adf9118e5af8d03d51a245f1112a6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity\u0026tag=1780961435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:999c307a79cabd8e9553f5d807d4125df1fef3153ecfce17cca871d5f8051eeb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:999c307a79cabd8e9553f5d807d4125df1fef3153ecfce17cca871d5f8051eeb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:999c307a79cabd8e9553f5d807d4125df1fef3153ecfce17cca871d5f8051eeb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3A999c307a79cabd8e9553f5d807d4125df1fef3153ecfce17cca871d5f8051eeb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy\u0026tag=1780962923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:a52f59971348bb0e5766a857c16818b379c404c3af300bc697ae1fc8e3f54f15_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:a52f59971348bb0e5766a857c16818b379c404c3af300bc697ae1fc8e3f54f15_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:a52f59971348bb0e5766a857c16818b379c404c3af300bc697ae1fc8e3f54f15_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3Aa52f59971348bb0e5766a857c16818b379c404c3af300bc697ae1fc8e3f54f15?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router\u0026tag=1780961042"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:95c7e0528adda5ba04775f32106977c5e3d95383b6553d57c703fc3e74d50a18_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:95c7e0528adda5ba04775f32106977c5e3d95383b6553d57c703fc3e74d50a18_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:95c7e0528adda5ba04775f32106977c5e3d95383b6553d57c703fc3e74d50a18_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3A95c7e0528adda5ba04775f32106977c5e3d95383b6553d57c703fc3e74d50a18?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-helm-operator\u0026tag=1780966032"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7c1c1e7d2af533ee43c92204d4e87104f305cbde1af7c8531fa8f1299c16a3ff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7c1c1e7d2af533ee43c92204d4e87104f305cbde1af7c8531fa8f1299c16a3ff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7c1c1e7d2af533ee43c92204d4e87104f305cbde1af7c8531fa8f1299c16a3ff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3A7c1c1e7d2af533ee43c92204d4e87104f305cbde1af7c8531fa8f1299c16a3ff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8\u0026tag=1780954673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c368220ebde4dcf75123e81eb9dc4e13544f64edaa79c28a21c93126e58239f6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c368220ebde4dcf75123e81eb9dc4e13544f64edaa79c28a21c93126e58239f6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c368220ebde4dcf75123e81eb9dc4e13544f64edaa79c28a21c93126e58239f6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Ac368220ebde4dcf75123e81eb9dc4e13544f64edaa79c28a21c93126e58239f6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1781009462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6deb824bf0fdd43b4c1d89e8b8601e05b1b09dd1b89922fbb6e3ca7ef7bdfea_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6deb824bf0fdd43b4c1d89e8b8601e05b1b09dd1b89922fbb6e3ca7ef7bdfea_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6deb824bf0fdd43b4c1d89e8b8601e05b1b09dd1b89922fbb6e3ca7ef7bdfea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Ae6deb824bf0fdd43b4c1d89e8b8601e05b1b09dd1b89922fbb6e3ca7ef7bdfea?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1781011204"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c915c06f28341ba8aa9a1c00fc49504a8816b0610b2cf5304f89fcedca8bc478_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c915c06f28341ba8aa9a1c00fc49504a8816b0610b2cf5304f89fcedca8bc478_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c915c06f28341ba8aa9a1c00fc49504a8816b0610b2cf5304f89fcedca8bc478_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3Ac915c06f28341ba8aa9a1c00fc49504a8816b0610b2cf5304f89fcedca8bc478?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8\u0026tag=1780965271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fcfa3ae6a7face4161aba93179d149a20d144e8a2a8564650750b4d8f0013496_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fcfa3ae6a7face4161aba93179d149a20d144e8a2a8564650750b4d8f0013496_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fcfa3ae6a7face4161aba93179d149a20d144e8a2a8564650750b4d8f0013496_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3Afcfa3ae6a7face4161aba93179d149a20d144e8a2a8564650750b4d8f0013496?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy\u0026tag=1780955409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e970ac1c75d936d92009f8fbc6754079704ea6d7731f2065c345c3a1e4412cdb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e970ac1c75d936d92009f8fbc6754079704ea6d7731f2065c345c3a1e4412cdb_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:e970ac1c75d936d92009f8fbc6754079704ea6d7731f2065c345c3a1e4412cdb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ae970ac1c75d936d92009f8fbc6754079704ea6d7731f2065c345c3a1e4412cdb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1781008024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:12d9ca6fa5893e68c553fd8909113ee1a29a96d3ff3bf32f3824791681de15d9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:12d9ca6fa5893e68c553fd8909113ee1a29a96d3ff3bf32f3824791681de15d9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:12d9ca6fa5893e68c553fd8909113ee1a29a96d3ff3bf32f3824791681de15d9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8@sha256%3A12d9ca6fa5893e68c553fd8909113ee1a29a96d3ff3bf32f3824791681de15d9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8\u0026tag=1780956405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:633d1d92e36d87a1f8adcc69c9b9810ef84ecda5b85dbfbd6eca2bd4e97a2ee7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:633d1d92e36d87a1f8adcc69c9b9810ef84ecda5b85dbfbd6eca2bd4e97a2ee7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:633d1d92e36d87a1f8adcc69c9b9810ef84ecda5b85dbfbd6eca2bd4e97a2ee7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8-operator@sha256%3A633d1d92e36d87a1f8adcc69c9b9810ef84ecda5b85dbfbd6eca2bd4e97a2ee7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator\u0026tag=1780956562"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:e1fa556d3b407ce1489283a4111eafad610475cbb18d17e238cd20bdc24910dd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:e1fa556d3b407ce1489283a4111eafad610475cbb18d17e238cd20bdc24910dd_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:e1fa556d3b407ce1489283a4111eafad610475cbb18d17e238cd20bdc24910dd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Ae1fa556d3b407ce1489283a4111eafad610475cbb18d17e238cd20bdc24910dd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1781007977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:38b7e234acdefe69fa3c01d50447aecf4314443f72410df6b81d9b7d66d8281c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:38b7e234acdefe69fa3c01d50447aecf4314443f72410df6b81d9b7d66d8281c_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:38b7e234acdefe69fa3c01d50447aecf4314443f72410df6b81d9b7d66d8281c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A38b7e234acdefe69fa3c01d50447aecf4314443f72410df6b81d9b7d66d8281c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1781010941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3b487d6d2f8191f74b599cd30b8c982010c10409fd291eb1dc4c6c7b683f7cc0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3b487d6d2f8191f74b599cd30b8c982010c10409fd291eb1dc4c6c7b683f7cc0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3b487d6d2f8191f74b599cd30b8c982010c10409fd291eb1dc4c6c7b683f7cc0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8@sha256%3A3b487d6d2f8191f74b599cd30b8c982010c10409fd291eb1dc4c6c7b683f7cc0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8\u0026tag=1780955025"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3b597f3bd5af1c355f4e7c0ed012ca06697cbc37b9bf9a23a5c5f4d0d8162321_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3b597f3bd5af1c355f4e7c0ed012ca06697cbc37b9bf9a23a5c5f4d0d8162321_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3b597f3bd5af1c355f4e7c0ed012ca06697cbc37b9bf9a23a5c5f4d0d8162321_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8-operator@sha256%3A3b597f3bd5af1c355f4e7c0ed012ca06697cbc37b9bf9a23a5c5f4d0d8162321?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator\u0026tag=1780965806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ccb1f539fd2f75a062fc2ed4b0d7f27c360aef121f933975e9ef9235af453934_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ccb1f539fd2f75a062fc2ed4b0d7f27c360aef121f933975e9ef9235af453934_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ccb1f539fd2f75a062fc2ed4b0d7f27c360aef121f933975e9ef9235af453934_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel8@sha256%3Accb1f539fd2f75a062fc2ed4b0d7f27c360aef121f933975e9ef9235af453934?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8\u0026tag=1780961686"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:932692970cab5f163ce35ed82c9cbbb70c8a7b2224b82d4bab39c86aaef4609b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:932692970cab5f163ce35ed82c9cbbb70c8a7b2224b82d4bab39c86aaef4609b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:932692970cab5f163ce35ed82c9cbbb70c8a7b2224b82d4bab39c86aaef4609b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-operator@sha256%3A932692970cab5f163ce35ed82c9cbbb70c8a7b2224b82d4bab39c86aaef4609b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-operator\u0026tag=1781006893"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:baa34b4e2cccff9bc62d82eb6552639010785d44cb019acc69866cf2aaaa3806_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:baa34b4e2cccff9bc62d82eb6552639010785d44cb019acc69866cf2aaaa3806_ppc64le",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:baa34b4e2cccff9bc62d82eb6552639010785d44cb019acc69866cf2aaaa3806_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel8@sha256%3Abaa34b4e2cccff9bc62d82eb6552639010785d44cb019acc69866cf2aaaa3806?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel8\u0026tag=1780962923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8d3a4e42a1ab884c9bbc9933b66db18c60e75a344a2d0570b10923c95d70fdb8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8d3a4e42a1ab884c9bbc9933b66db18c60e75a344a2d0570b10923c95d70fdb8_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8d3a4e42a1ab884c9bbc9933b66db18c60e75a344a2d0570b10923c95d70fdb8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A8d3a4e42a1ab884c9bbc9933b66db18c60e75a344a2d0570b10923c95d70fdb8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1781009090"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:0ac2a7fd509e0f905d2807f93051fef189de6febdf428b8c14e2618e6b70fe7f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:0ac2a7fd509e0f905d2807f93051fef189de6febdf428b8c14e2618e6b70fe7f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:0ac2a7fd509e0f905d2807f93051fef189de6febdf428b8c14e2618e6b70fe7f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller@sha256%3A0ac2a7fd509e0f905d2807f93051fef189de6febdf428b8c14e2618e6b70fe7f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller\u0026tag=1780955729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:505e422599401fbf23ce7000b02929b67d389c9d437974c8fdf91a0ec76061ee_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:505e422599401fbf23ce7000b02929b67d389c9d437974c8fdf91a0ec76061ee_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:505e422599401fbf23ce7000b02929b67d389c9d437974c8fdf91a0ec76061ee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon@sha256%3A505e422599401fbf23ce7000b02929b67d389c9d437974c8fdf91a0ec76061ee?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon\u0026tag=1780955979"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:ba573576b17d3230c3893819b2e570a0f5c2c9760935b2c882c57b2da99696f5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:ba573576b17d3230c3893819b2e570a0f5c2c9760935b2c882c57b2da99696f5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:ba573576b17d3230c3893819b2e570a0f5c2c9760935b2c882c57b2da99696f5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin@sha256%3Aba573576b17d3230c3893819b2e570a0f5c2c9760935b2c882c57b2da99696f5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin\u0026tag=1780955821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:1222990acec343a998b5085dd11a44583d86b7cc76d8f99b69d8a287116dd57b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:1222990acec343a998b5085dd11a44583d86b7cc76d8f99b69d8a287116dd57b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:1222990acec343a998b5085dd11a44583d86b7cc76d8f99b69d8a287116dd57b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-operator@sha256%3A1222990acec343a998b5085dd11a44583d86b7cc76d8f99b69d8a287116dd57b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-operator\u0026tag=1781006909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:fd24147630533238a126ea21fbba484239135a15023c524137fc8ea25a7065ca_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:fd24147630533238a126ea21fbba484239135a15023c524137fc8ea25a7065ca_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:fd24147630533238a126ea21fbba484239135a15023c524137fc8ea25a7065ca_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook@sha256%3Afd24147630533238a126ea21fbba484239135a15023c524137fc8ea25a7065ca?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook\u0026tag=1780956441"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:5d95ebdf8eba75315f3e296f24533697ca66e3b828b886e12f0957d197ee388a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:5d95ebdf8eba75315f3e296f24533697ca66e3b828b886e12f0957d197ee388a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:5d95ebdf8eba75315f3e296f24533697ca66e3b828b886e12f0957d197ee388a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8@sha256%3A5d95ebdf8eba75315f3e296f24533697ca66e3b828b886e12f0957d197ee388a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8\u0026tag=1780959659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b23ea9fa8eaa75fb8e0acfa6f45ff360a8784627cc3fad5d608a80181f193c3f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b23ea9fa8eaa75fb8e0acfa6f45ff360a8784627cc3fad5d608a80181f193c3f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b23ea9fa8eaa75fb8e0acfa6f45ff360a8784627cc3fad5d608a80181f193c3f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8-operator@sha256%3Ab23ea9fa8eaa75fb8e0acfa6f45ff360a8784627cc3fad5d608a80181f193c3f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator\u0026tag=1780955015"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3A908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/cloud-event-proxy-rhel8\u0026tag=1780955488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3A908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8\u0026tag=1780955488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:8d5c598393328496de5fafd9117d9d4f9fa4fcfb8c5418ade4df1604de18207a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:8d5c598393328496de5fafd9117d9d4f9fa4fcfb8c5418ade4df1604de18207a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:8d5c598393328496de5fafd9117d9d4f9fa4fcfb8c5418ade4df1604de18207a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-operator@sha256%3A8d5c598393328496de5fafd9117d9d4f9fa4fcfb8c5418ade4df1604de18207a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-operator\u0026tag=1780954465"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:0e8ab3244ad637aba8448bd161d3a06c85a68afe7ea08e25064c4ed16c7ef650_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:0e8ab3244ad637aba8448bd161d3a06c85a68afe7ea08e25064c4ed16c7ef650_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:0e8ab3244ad637aba8448bd161d3a06c85a68afe7ea08e25064c4ed16c7ef650_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8@sha256%3A0e8ab3244ad637aba8448bd161d3a06c85a68afe7ea08e25064c4ed16c7ef650?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8\u0026tag=1780959721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f56649d00f40db610f0a6fae6827575adbf58b70368c0dad73c794a3c77a35df_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f56649d00f40db610f0a6fae6827575adbf58b70368c0dad73c794a3c77a35df_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f56649d00f40db610f0a6fae6827575adbf58b70368c0dad73c794a3c77a35df_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8-operator@sha256%3Af56649d00f40db610f0a6fae6827575adbf58b70368c0dad73c794a3c77a35df?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator\u0026tag=1780956955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:77f97aa79f52695ab5dfc605b780692847051e9dd679789a0f355510ff6cfe51_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:77f97aa79f52695ab5dfc605b780692847051e9dd679789a0f355510ff6cfe51_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:77f97aa79f52695ab5dfc605b780692847051e9dd679789a0f355510ff6cfe51_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni@sha256%3A77f97aa79f52695ab5dfc605b780692847051e9dd679789a0f355510ff6cfe51?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni\u0026tag=1780954990"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59850338d772efb690f2016093b01feeb4dd3c73805d77c26172ef7f293f1a55_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59850338d772efb690f2016093b01feeb4dd3c73805d77c26172ef7f293f1a55_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59850338d772efb690f2016093b01feeb4dd3c73805d77c26172ef7f293f1a55_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A59850338d772efb690f2016093b01feeb4dd3c73805d77c26172ef7f293f1a55?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1781009434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b3925f84e0f1311b6a2461b89da2d45c79d93fb87c927e8211581a320ca9f9d4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b3925f84e0f1311b6a2461b89da2d45c79d93fb87c927e8211581a320ca9f9d4_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b3925f84e0f1311b6a2461b89da2d45c79d93fb87c927e8211581a320ca9f9d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Ab3925f84e0f1311b6a2461b89da2d45c79d93fb87c927e8211581a320ca9f9d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1781011186"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6265c12a8b31624fe4257abad1889839e2e1612167dafa7274b8d614fdfee64e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6265c12a8b31624fe4257abad1889839e2e1612167dafa7274b8d614fdfee64e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6265c12a8b31624fe4257abad1889839e2e1612167dafa7274b8d614fdfee64e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A6265c12a8b31624fe4257abad1889839e2e1612167dafa7274b8d614fdfee64e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1781009142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6e94ce6c4e49d6de3e1bdbc145712ac8d1a45cc841785b20cb7605c35bef5d35_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6e94ce6c4e49d6de3e1bdbc145712ac8d1a45cc841785b20cb7605c35bef5d35_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6e94ce6c4e49d6de3e1bdbc145712ac8d1a45cc841785b20cb7605c35bef5d35_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A6e94ce6c4e49d6de3e1bdbc145712ac8d1a45cc841785b20cb7605c35bef5d35?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1781009040"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fc078ca1f72f833ac498c30a1de5a4c7500c83cd94a3008445373266bfe56acd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fc078ca1f72f833ac498c30a1de5a4c7500c83cd94a3008445373266bfe56acd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fc078ca1f72f833ac498c30a1de5a4c7500c83cd94a3008445373266bfe56acd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Afc078ca1f72f833ac498c30a1de5a4c7500c83cd94a3008445373266bfe56acd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1781011673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2af9330004a06971944971326d1e8377cbbf4725f9d703db266abd7e5359d7ec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2af9330004a06971944971326d1e8377cbbf4725f9d703db266abd7e5359d7ec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2af9330004a06971944971326d1e8377cbbf4725f9d703db266abd7e5359d7ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A2af9330004a06971944971326d1e8377cbbf4725f9d703db266abd7e5359d7ec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1781011186"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:67bc0d4e819af067717ddcf765b4d565ba2f953c65633c122577fe192a6bea0b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:67bc0d4e819af067717ddcf765b4d565ba2f953c65633c122577fe192a6bea0b_amd64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:67bc0d4e819af067717ddcf765b4d565ba2f953c65633c122577fe192a6bea0b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel8@sha256%3A67bc0d4e819af067717ddcf765b4d565ba2f953c65633c122577fe192a6bea0b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel8\u0026tag=1780959932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:1afcc680effd2ce9de75d5a8ca4b7a1940198d30e5c042094f6eba007f5d673a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:1afcc680effd2ce9de75d5a8ca4b7a1940198d30e5c042094f6eba007f5d673a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:1afcc680effd2ce9de75d5a8ca4b7a1940198d30e5c042094f6eba007f5d673a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery@sha256%3A1afcc680effd2ce9de75d5a8ca4b7a1940198d30e5c042094f6eba007f5d673a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery\u0026tag=1780956818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:fcdcc373e6c1ee28739e8883c4c6b447267987e34b9404ae693cf4331aeac76a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:fcdcc373e6c1ee28739e8883c4c6b447267987e34b9404ae693cf4331aeac76a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:fcdcc373e6c1ee28739e8883c4c6b447267987e34b9404ae693cf4331aeac76a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3Afcdcc373e6c1ee28739e8883c4c6b447267987e34b9404ae693cf4331aeac76a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-operator\u0026tag=1780963391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c604800d8da5342d1a2d3c8d684844d66c4df5d03b686b0666e109aab6dc984b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c604800d8da5342d1a2d3c8d684844d66c4df5d03b686b0666e109aab6dc984b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c604800d8da5342d1a2d3c8d684844d66c4df5d03b686b0666e109aab6dc984b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3Ac604800d8da5342d1a2d3c8d684844d66c4df5d03b686b0666e109aab6dc984b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity\u0026tag=1780961435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:671a3dabbb5b5f6b2b4620ce823d6928b65506f2acffa0104a4c2d149a223211_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:671a3dabbb5b5f6b2b4620ce823d6928b65506f2acffa0104a4c2d149a223211_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:671a3dabbb5b5f6b2b4620ce823d6928b65506f2acffa0104a4c2d149a223211_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3A671a3dabbb5b5f6b2b4620ce823d6928b65506f2acffa0104a4c2d149a223211?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy\u0026tag=1780962923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:b65119938857e8150f90c3b6bbc4e92d9646b9bc6c39f467e0ba3e4662e28036_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:b65119938857e8150f90c3b6bbc4e92d9646b9bc6c39f467e0ba3e4662e28036_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:b65119938857e8150f90c3b6bbc4e92d9646b9bc6c39f467e0ba3e4662e28036_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3Ab65119938857e8150f90c3b6bbc4e92d9646b9bc6c39f467e0ba3e4662e28036?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router\u0026tag=1780961042"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:0889d518d954d62033fefe6df255f5ba816dec01d415d13a5634132f05eeb344_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:0889d518d954d62033fefe6df255f5ba816dec01d415d13a5634132f05eeb344_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:0889d518d954d62033fefe6df255f5ba816dec01d415d13a5634132f05eeb344_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3A0889d518d954d62033fefe6df255f5ba816dec01d415d13a5634132f05eeb344?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-operator\u0026tag=1780966032"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:b1d620feb486ef28423ee30cf03dedd26c30f589b12d87fff47a19cbcde4c3c4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:b1d620feb486ef28423ee30cf03dedd26c30f589b12d87fff47a19cbcde4c3c4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:b1d620feb486ef28423ee30cf03dedd26c30f589b12d87fff47a19cbcde4c3c4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3Ab1d620feb486ef28423ee30cf03dedd26c30f589b12d87fff47a19cbcde4c3c4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8\u0026tag=1780954673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a008fe2d2aba4b5f793d1d795f04174dfecc2633856129d3786a18b641a34f2d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a008fe2d2aba4b5f793d1d795f04174dfecc2633856129d3786a18b641a34f2d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a008fe2d2aba4b5f793d1d795f04174dfecc2633856129d3786a18b641a34f2d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Aa008fe2d2aba4b5f793d1d795f04174dfecc2633856129d3786a18b641a34f2d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1781009462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:5b648181cb5f1db70ab87fbf67b017c76fc1f83f7add0eacb658bc723763e3e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:5b648181cb5f1db70ab87fbf67b017c76fc1f83f7add0eacb658bc723763e3e1_amd64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:5b648181cb5f1db70ab87fbf67b017c76fc1f83f7add0eacb658bc723763e3e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A5b648181cb5f1db70ab87fbf67b017c76fc1f83f7add0eacb658bc723763e3e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1781011204"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f553364c160f85a326a63ef456658486e384c56ed0b1af539ebea2d2e503c81e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f553364c160f85a326a63ef456658486e384c56ed0b1af539ebea2d2e503c81e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f553364c160f85a326a63ef456658486e384c56ed0b1af539ebea2d2e503c81e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel8@sha256%3Af553364c160f85a326a63ef456658486e384c56ed0b1af539ebea2d2e503c81e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8\u0026tag=1780955356"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30af84e015601d39ad0b62c14cd5ad901ae6a4450ff247ab265b78eb8fac39a3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30af84e015601d39ad0b62c14cd5ad901ae6a4450ff247ab265b78eb8fac39a3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30af84e015601d39ad0b62c14cd5ad901ae6a4450ff247ab265b78eb8fac39a3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel8-operator@sha256%3A30af84e015601d39ad0b62c14cd5ad901ae6a4450ff247ab265b78eb8fac39a3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator\u0026tag=1780954539"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:467ed1130abf80b62f8e0537e9977658d22dbc3cf7cd40ca96e3a54d878feedb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:467ed1130abf80b62f8e0537e9977658d22dbc3cf7cd40ca96e3a54d878feedb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:467ed1130abf80b62f8e0537e9977658d22dbc3cf7cd40ca96e3a54d878feedb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3A467ed1130abf80b62f8e0537e9977658d22dbc3cf7cd40ca96e3a54d878feedb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8\u0026tag=1780965271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:dad9ed95f9fbba93ad7fe74761b007ca7b4da4c59a73abb1fda223e4c03a422d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:dad9ed95f9fbba93ad7fe74761b007ca7b4da4c59a73abb1fda223e4c03a422d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:dad9ed95f9fbba93ad7fe74761b007ca7b4da4c59a73abb1fda223e4c03a422d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3Adad9ed95f9fbba93ad7fe74761b007ca7b4da4c59a73abb1fda223e4c03a422d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy\u0026tag=1780955409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d6584c4860edb91594eda55fcb27a576c6e74313b10569079d5454553dc1b64e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d6584c4860edb91594eda55fcb27a576c6e74313b10569079d5454553dc1b64e_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:d6584c4860edb91594eda55fcb27a576c6e74313b10569079d5454553dc1b64e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ad6584c4860edb91594eda55fcb27a576c6e74313b10569079d5454553dc1b64e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1781008024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:3af4fce899db69f0df6699cec4a3e4b26439c6a18de30232f1ff145f00d5d68a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:3af4fce899db69f0df6699cec4a3e4b26439c6a18de30232f1ff145f00d5d68a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:3af4fce899db69f0df6699cec4a3e4b26439c6a18de30232f1ff145f00d5d68a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8@sha256%3A3af4fce899db69f0df6699cec4a3e4b26439c6a18de30232f1ff145f00d5d68a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8\u0026tag=1780956405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:f70052e4ccac8f01affc7e0f1eaf9d14b4eb15544b0b5509fefb4e47a2a820ee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:f70052e4ccac8f01affc7e0f1eaf9d14b4eb15544b0b5509fefb4e47a2a820ee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:f70052e4ccac8f01affc7e0f1eaf9d14b4eb15544b0b5509fefb4e47a2a820ee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8-operator@sha256%3Af70052e4ccac8f01affc7e0f1eaf9d14b4eb15544b0b5509fefb4e47a2a820ee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator\u0026tag=1780956562"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:e4ac1d06fcc633033dbac0db2749c09678ef71c109c1efd75ad31ecda396f721_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:e4ac1d06fcc633033dbac0db2749c09678ef71c109c1efd75ad31ecda396f721_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:e4ac1d06fcc633033dbac0db2749c09678ef71c109c1efd75ad31ecda396f721_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Ae4ac1d06fcc633033dbac0db2749c09678ef71c109c1efd75ad31ecda396f721?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1781007977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:35b685780d05bc62b306783208ceea2a99b78ec1e38099d25ab9e27fe64fc2e9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:35b685780d05bc62b306783208ceea2a99b78ec1e38099d25ab9e27fe64fc2e9_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:35b685780d05bc62b306783208ceea2a99b78ec1e38099d25ab9e27fe64fc2e9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A35b685780d05bc62b306783208ceea2a99b78ec1e38099d25ab9e27fe64fc2e9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1781010941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:22969e24366f0b43d2cf11c30157842f595bc54976ac096ede75fbdcc5d4985f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:22969e24366f0b43d2cf11c30157842f595bc54976ac096ede75fbdcc5d4985f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:22969e24366f0b43d2cf11c30157842f595bc54976ac096ede75fbdcc5d4985f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8@sha256%3A22969e24366f0b43d2cf11c30157842f595bc54976ac096ede75fbdcc5d4985f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8\u0026tag=1780955025"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3fe5d5a4ba52d689ec4b106ed8899e5fd75759671a6192641e2e24873707db77_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3fe5d5a4ba52d689ec4b106ed8899e5fd75759671a6192641e2e24873707db77_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3fe5d5a4ba52d689ec4b106ed8899e5fd75759671a6192641e2e24873707db77_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8-operator@sha256%3A3fe5d5a4ba52d689ec4b106ed8899e5fd75759671a6192641e2e24873707db77?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator\u0026tag=1780965806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:e7a8657e23e6dd922ea658aa52e8145254cd5753589e5ab3732a0d1d574e46f2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:e7a8657e23e6dd922ea658aa52e8145254cd5753589e5ab3732a0d1d574e46f2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:e7a8657e23e6dd922ea658aa52e8145254cd5753589e5ab3732a0d1d574e46f2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel8@sha256%3Ae7a8657e23e6dd922ea658aa52e8145254cd5753589e5ab3732a0d1d574e46f2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8\u0026tag=1780961686"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:b5c8be4282dce9ca844df81ff8696bdd5fd25bb58b51c2061d3a3643e3f8dc2a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:b5c8be4282dce9ca844df81ff8696bdd5fd25bb58b51c2061d3a3643e3f8dc2a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:b5c8be4282dce9ca844df81ff8696bdd5fd25bb58b51c2061d3a3643e3f8dc2a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-operator@sha256%3Ab5c8be4282dce9ca844df81ff8696bdd5fd25bb58b51c2061d3a3643e3f8dc2a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-operator\u0026tag=1781006893"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:fe4370f51955f5a8b5588b7e590a9521cb792066f6259ea0b2b032ac957be413_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:fe4370f51955f5a8b5588b7e590a9521cb792066f6259ea0b2b032ac957be413_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:fe4370f51955f5a8b5588b7e590a9521cb792066f6259ea0b2b032ac957be413_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel8@sha256%3Afe4370f51955f5a8b5588b7e590a9521cb792066f6259ea0b2b032ac957be413?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel8\u0026tag=1780962923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:753de30d0d2a7db211426c9ede26bda02b91709680ca5acd2334c921e08fc088_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:753de30d0d2a7db211426c9ede26bda02b91709680ca5acd2334c921e08fc088_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:753de30d0d2a7db211426c9ede26bda02b91709680ca5acd2334c921e08fc088_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A753de30d0d2a7db211426c9ede26bda02b91709680ca5acd2334c921e08fc088?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1781009090"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:ff30de805aae0da846920093dafb42ca2266b48d7b232ce774070fc1c0da5709_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:ff30de805aae0da846920093dafb42ca2266b48d7b232ce774070fc1c0da5709_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:ff30de805aae0da846920093dafb42ca2266b48d7b232ce774070fc1c0da5709_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller@sha256%3Aff30de805aae0da846920093dafb42ca2266b48d7b232ce774070fc1c0da5709?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller\u0026tag=1780955729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:041d72bac1ff9895f91c83b21a4f92499b948c13354fd074393bb7b9294d46c0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:041d72bac1ff9895f91c83b21a4f92499b948c13354fd074393bb7b9294d46c0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:041d72bac1ff9895f91c83b21a4f92499b948c13354fd074393bb7b9294d46c0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon@sha256%3A041d72bac1ff9895f91c83b21a4f92499b948c13354fd074393bb7b9294d46c0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon\u0026tag=1780955979"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:82c20bceaf5cb9e4d3e98fa58c98a679c05d55482519ea3fa080aabeab34cdf7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:82c20bceaf5cb9e4d3e98fa58c98a679c05d55482519ea3fa080aabeab34cdf7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:82c20bceaf5cb9e4d3e98fa58c98a679c05d55482519ea3fa080aabeab34cdf7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin@sha256%3A82c20bceaf5cb9e4d3e98fa58c98a679c05d55482519ea3fa080aabeab34cdf7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin\u0026tag=1780955821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:a80bc249c918d1cd92e3c46de8e87b388783ae93b9ac95839eb3b0c0efb8d8a7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:a80bc249c918d1cd92e3c46de8e87b388783ae93b9ac95839eb3b0c0efb8d8a7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:a80bc249c918d1cd92e3c46de8e87b388783ae93b9ac95839eb3b0c0efb8d8a7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-operator@sha256%3Aa80bc249c918d1cd92e3c46de8e87b388783ae93b9ac95839eb3b0c0efb8d8a7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-operator\u0026tag=1781006909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:78dd8bba83fef4a8fffaa7b65ecf9f9c50567eb051f3015c8bdefbaa8334de5c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:78dd8bba83fef4a8fffaa7b65ecf9f9c50567eb051f3015c8bdefbaa8334de5c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:78dd8bba83fef4a8fffaa7b65ecf9f9c50567eb051f3015c8bdefbaa8334de5c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook@sha256%3A78dd8bba83fef4a8fffaa7b65ecf9f9c50567eb051f3015c8bdefbaa8334de5c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook\u0026tag=1780956441"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:637f6b5eb27d7a38e108b070130b6a52c0f44923d584ca65534cd88623d86f40_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:637f6b5eb27d7a38e108b070130b6a52c0f44923d584ca65534cd88623d86f40_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:637f6b5eb27d7a38e108b070130b6a52c0f44923d584ca65534cd88623d86f40_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8@sha256%3A637f6b5eb27d7a38e108b070130b6a52c0f44923d584ca65534cd88623d86f40?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8\u0026tag=1780959659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b70ef1d999b9f5308ecc361d6e4b74c8da65658d1d6802c731b6aa3a24725dc0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b70ef1d999b9f5308ecc361d6e4b74c8da65658d1d6802c731b6aa3a24725dc0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b70ef1d999b9f5308ecc361d6e4b74c8da65658d1d6802c731b6aa3a24725dc0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8-operator@sha256%3Ab70ef1d999b9f5308ecc361d6e4b74c8da65658d1d6802c731b6aa3a24725dc0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator\u0026tag=1780955015"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:d456e8be4a3a28609cd29dda8c9f6fa46130c8a3d421e23c97d762d089bbe5b6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:d456e8be4a3a28609cd29dda8c9f6fa46130c8a3d421e23c97d762d089bbe5b6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:d456e8be4a3a28609cd29dda8c9f6fa46130c8a3d421e23c97d762d089bbe5b6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-operator@sha256%3Ad456e8be4a3a28609cd29dda8c9f6fa46130c8a3d421e23c97d762d089bbe5b6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-operator\u0026tag=1780954465"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:280c976f5b58de0920c9ec4e2284cab56077dc975a46146aeb53509c4b302b83_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:280c976f5b58de0920c9ec4e2284cab56077dc975a46146aeb53509c4b302b83_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:280c976f5b58de0920c9ec4e2284cab56077dc975a46146aeb53509c4b302b83_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8@sha256%3A280c976f5b58de0920c9ec4e2284cab56077dc975a46146aeb53509c4b302b83?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8\u0026tag=1780959721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:53f6f7a759a936966f39d97e1a7c0b10c86e02122557d710f14f0289f0b673a5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:53f6f7a759a936966f39d97e1a7c0b10c86e02122557d710f14f0289f0b673a5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:53f6f7a759a936966f39d97e1a7c0b10c86e02122557d710f14f0289f0b673a5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8-operator@sha256%3A53f6f7a759a936966f39d97e1a7c0b10c86e02122557d710f14f0289f0b673a5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator\u0026tag=1780956955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9cbca78a3a21d65303eba79b841fbe67f53b0a65fc82879534266075deef35d4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9cbca78a3a21d65303eba79b841fbe67f53b0a65fc82879534266075deef35d4_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9cbca78a3a21d65303eba79b841fbe67f53b0a65fc82879534266075deef35d4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A9cbca78a3a21d65303eba79b841fbe67f53b0a65fc82879534266075deef35d4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1781009434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a7e30f2b77bb97ed583ee189ed72dfe9ad2a3928c67eb6d5aade5f1467f5d332_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a7e30f2b77bb97ed583ee189ed72dfe9ad2a3928c67eb6d5aade5f1467f5d332_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a7e30f2b77bb97ed583ee189ed72dfe9ad2a3928c67eb6d5aade5f1467f5d332_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Aa7e30f2b77bb97ed583ee189ed72dfe9ad2a3928c67eb6d5aade5f1467f5d332?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1781011186"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3f29b35a62f679a89a6cf199988f89e736707012542d72aa1761c89eef1909fc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3f29b35a62f679a89a6cf199988f89e736707012542d72aa1761c89eef1909fc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3f29b35a62f679a89a6cf199988f89e736707012542d72aa1761c89eef1909fc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A3f29b35a62f679a89a6cf199988f89e736707012542d72aa1761c89eef1909fc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1781009040"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f005f7a9a4bbe701274a5e59e7e0e3c3a72426b19560653575ac6caa0e28cdbf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f005f7a9a4bbe701274a5e59e7e0e3c3a72426b19560653575ac6caa0e28cdbf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f005f7a9a4bbe701274a5e59e7e0e3c3a72426b19560653575ac6caa0e28cdbf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Af005f7a9a4bbe701274a5e59e7e0e3c3a72426b19560653575ac6caa0e28cdbf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1781011673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:a3c950362ae071e71de468b7f619678386edfdfd0855d0df075f99d993132720_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:a3c950362ae071e71de468b7f619678386edfdfd0855d0df075f99d993132720_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:a3c950362ae071e71de468b7f619678386edfdfd0855d0df075f99d993132720_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Aa3c950362ae071e71de468b7f619678386edfdfd0855d0df075f99d993132720?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1781011186"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:2db7e64a9345be2d431e0ba15601ee9cc8d8dfc219a757a0f7a664d521e8adda_s390x",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:2db7e64a9345be2d431e0ba15601ee9cc8d8dfc219a757a0f7a664d521e8adda_s390x",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:2db7e64a9345be2d431e0ba15601ee9cc8d8dfc219a757a0f7a664d521e8adda_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel8@sha256%3A2db7e64a9345be2d431e0ba15601ee9cc8d8dfc219a757a0f7a664d521e8adda?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel8\u0026tag=1780959932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:8da6cb3c6dacaf49d3eedbeb0f03324a14734f4c918ffb038f41d0ab2acadd68_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:8da6cb3c6dacaf49d3eedbeb0f03324a14734f4c918ffb038f41d0ab2acadd68_s390x",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:8da6cb3c6dacaf49d3eedbeb0f03324a14734f4c918ffb038f41d0ab2acadd68_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery@sha256%3A8da6cb3c6dacaf49d3eedbeb0f03324a14734f4c918ffb038f41d0ab2acadd68?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery\u0026tag=1780956818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:222f4a27a841f4431f3fb204e1c7d3b55fa030495319514eecb26292c3beb0a0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:222f4a27a841f4431f3fb204e1c7d3b55fa030495319514eecb26292c3beb0a0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:222f4a27a841f4431f3fb204e1c7d3b55fa030495319514eecb26292c3beb0a0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3A222f4a27a841f4431f3fb204e1c7d3b55fa030495319514eecb26292c3beb0a0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-operator\u0026tag=1780963391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:adf0ed6be1fc6efe5c78191efc5094efd8663b0c3ec3815f7c824f9919045c5b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:adf0ed6be1fc6efe5c78191efc5094efd8663b0c3ec3815f7c824f9919045c5b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:adf0ed6be1fc6efe5c78191efc5094efd8663b0c3ec3815f7c824f9919045c5b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3Aadf0ed6be1fc6efe5c78191efc5094efd8663b0c3ec3815f7c824f9919045c5b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity\u0026tag=1780961435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:2a325b078b73e9bfd6e92f8154c4177aeb60dbdd59657227ca37ab1bd46827af_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:2a325b078b73e9bfd6e92f8154c4177aeb60dbdd59657227ca37ab1bd46827af_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:2a325b078b73e9bfd6e92f8154c4177aeb60dbdd59657227ca37ab1bd46827af_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3A2a325b078b73e9bfd6e92f8154c4177aeb60dbdd59657227ca37ab1bd46827af?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy\u0026tag=1780962923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:97832034bbb82111434b4fbfe1444407ada2a083429a7efba57d55b4d610537b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:97832034bbb82111434b4fbfe1444407ada2a083429a7efba57d55b4d610537b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:97832034bbb82111434b4fbfe1444407ada2a083429a7efba57d55b4d610537b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3A97832034bbb82111434b4fbfe1444407ada2a083429a7efba57d55b4d610537b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router\u0026tag=1780961042"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:3a07fa757f01f4899f9c27883f06f4f7ab567310f5ae6bd44e96eab22d6dd01b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:3a07fa757f01f4899f9c27883f06f4f7ab567310f5ae6bd44e96eab22d6dd01b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:3a07fa757f01f4899f9c27883f06f4f7ab567310f5ae6bd44e96eab22d6dd01b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3A3a07fa757f01f4899f9c27883f06f4f7ab567310f5ae6bd44e96eab22d6dd01b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-helm-operator\u0026tag=1780966032"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d13a4baf04347af18f6eaa4cbdcd5f847ebcd396efedeb89ecf1393cd1e378f7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d13a4baf04347af18f6eaa4cbdcd5f847ebcd396efedeb89ecf1393cd1e378f7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d13a4baf04347af18f6eaa4cbdcd5f847ebcd396efedeb89ecf1393cd1e378f7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3Ad13a4baf04347af18f6eaa4cbdcd5f847ebcd396efedeb89ecf1393cd1e378f7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8\u0026tag=1780954673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d4b20eee8037ab15a8e786ef3db3b1fddfc936fc59f249d893227dd1659d1ef5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d4b20eee8037ab15a8e786ef3db3b1fddfc936fc59f249d893227dd1659d1ef5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d4b20eee8037ab15a8e786ef3db3b1fddfc936fc59f249d893227dd1659d1ef5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Ad4b20eee8037ab15a8e786ef3db3b1fddfc936fc59f249d893227dd1659d1ef5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1781009462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:776c81365d8979f2ca91127ff47d38362c7a1682643bb70d9f221a35b4c1f05c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:776c81365d8979f2ca91127ff47d38362c7a1682643bb70d9f221a35b4c1f05c_s390x",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:776c81365d8979f2ca91127ff47d38362c7a1682643bb70d9f221a35b4c1f05c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A776c81365d8979f2ca91127ff47d38362c7a1682643bb70d9f221a35b4c1f05c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1781011204"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0d7ec956e636933e576c00924726bd24a267bf46a9510a9e50b7a3e79f70daca_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0d7ec956e636933e576c00924726bd24a267bf46a9510a9e50b7a3e79f70daca_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0d7ec956e636933e576c00924726bd24a267bf46a9510a9e50b7a3e79f70daca_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3A0d7ec956e636933e576c00924726bd24a267bf46a9510a9e50b7a3e79f70daca?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8\u0026tag=1780965271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:9d5b06a17a27074c71ca8c4005e1b6b04a4ca488eb2571279805cffc56656c03_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:9d5b06a17a27074c71ca8c4005e1b6b04a4ca488eb2571279805cffc56656c03_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:9d5b06a17a27074c71ca8c4005e1b6b04a4ca488eb2571279805cffc56656c03_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3A9d5b06a17a27074c71ca8c4005e1b6b04a4ca488eb2571279805cffc56656c03?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy\u0026tag=1780955409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:8451c790ba30fb6395d8074c37c150d88d2adad11920e9b999332ffdb929a328_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:8451c790ba30fb6395d8074c37c150d88d2adad11920e9b999332ffdb929a328_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:8451c790ba30fb6395d8074c37c150d88d2adad11920e9b999332ffdb929a328_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A8451c790ba30fb6395d8074c37c150d88d2adad11920e9b999332ffdb929a328?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1781008024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:edb5c32f8172251350021de785fabeb9a00a0d8250758f7857f9ea675c74f540_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:edb5c32f8172251350021de785fabeb9a00a0d8250758f7857f9ea675c74f540_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:edb5c32f8172251350021de785fabeb9a00a0d8250758f7857f9ea675c74f540_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Aedb5c32f8172251350021de785fabeb9a00a0d8250758f7857f9ea675c74f540?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1781007977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5cbf178c6594a373950ddf0e3c81452aa4163b6e4ebf30a735207a2523cf918a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5cbf178c6594a373950ddf0e3c81452aa4163b6e4ebf30a735207a2523cf918a_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5cbf178c6594a373950ddf0e3c81452aa4163b6e4ebf30a735207a2523cf918a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A5cbf178c6594a373950ddf0e3c81452aa4163b6e4ebf30a735207a2523cf918a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1781010941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7da1135f319c0f3086b822465dfe0d5e1d1d7b547b92dbd42dee8286c8f5c68f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7da1135f319c0f3086b822465dfe0d5e1d1d7b547b92dbd42dee8286c8f5c68f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7da1135f319c0f3086b822465dfe0d5e1d1d7b547b92dbd42dee8286c8f5c68f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8@sha256%3A7da1135f319c0f3086b822465dfe0d5e1d1d7b547b92dbd42dee8286c8f5c68f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8\u0026tag=1780955025"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0bdf015e02c235268ce9fefafcb7b841266f434448ae5aaa9ad66e49ed36a39_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0bdf015e02c235268ce9fefafcb7b841266f434448ae5aaa9ad66e49ed36a39_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0bdf015e02c235268ce9fefafcb7b841266f434448ae5aaa9ad66e49ed36a39_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8-operator@sha256%3Aa0bdf015e02c235268ce9fefafcb7b841266f434448ae5aaa9ad66e49ed36a39?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator\u0026tag=1780965806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c115cba6d9973e91e208f56a315676b56657e5cf7863d19c0a7103f13edb9b44_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c115cba6d9973e91e208f56a315676b56657e5cf7863d19c0a7103f13edb9b44_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c115cba6d9973e91e208f56a315676b56657e5cf7863d19c0a7103f13edb9b44_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel8@sha256%3Ac115cba6d9973e91e208f56a315676b56657e5cf7863d19c0a7103f13edb9b44?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8\u0026tag=1780961686"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6c87ec100726f3a8c65475666e604062f391ce3a8d9f516eae64ef7d51247fba_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6c87ec100726f3a8c65475666e604062f391ce3a8d9f516eae64ef7d51247fba_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6c87ec100726f3a8c65475666e604062f391ce3a8d9f516eae64ef7d51247fba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8@sha256%3A6c87ec100726f3a8c65475666e604062f391ce3a8d9f516eae64ef7d51247fba?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8\u0026tag=1780959659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:88f1d696cd44e19a0852b3d51ba224129b920c5d1859870dc36de53e3cb95c84_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:88f1d696cd44e19a0852b3d51ba224129b920c5d1859870dc36de53e3cb95c84_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:88f1d696cd44e19a0852b3d51ba224129b920c5d1859870dc36de53e3cb95c84_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8-operator@sha256%3A88f1d696cd44e19a0852b3d51ba224129b920c5d1859870dc36de53e3cb95c84?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator\u0026tag=1780955015"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:8451c790ba30fb6395d8074c37c150d88d2adad11920e9b999332ffdb929a328_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:8451c790ba30fb6395d8074c37c150d88d2adad11920e9b999332ffdb929a328_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:8451c790ba30fb6395d8074c37c150d88d2adad11920e9b999332ffdb929a328_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:cdf612d1d3001b7e2eab47bee66395dc626a6a41421a9fff247ac7f1e530c281_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:cdf612d1d3001b7e2eab47bee66395dc626a6a41421a9fff247ac7f1e530c281_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:cdf612d1d3001b7e2eab47bee66395dc626a6a41421a9fff247ac7f1e530c281_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d6584c4860edb91594eda55fcb27a576c6e74313b10569079d5454553dc1b64e_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:d6584c4860edb91594eda55fcb27a576c6e74313b10569079d5454553dc1b64e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:d6584c4860edb91594eda55fcb27a576c6e74313b10569079d5454553dc1b64e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e970ac1c75d936d92009f8fbc6754079704ea6d7731f2065c345c3a1e4412cdb_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:e970ac1c75d936d92009f8fbc6754079704ea6d7731f2065c345c3a1e4412cdb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:e970ac1c75d936d92009f8fbc6754079704ea6d7731f2065c345c3a1e4412cdb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3965aaeeb958ccea911ff08d45da2c16ef953f6a473eb69b790fa1afa7c0b76d_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3965aaeeb958ccea911ff08d45da2c16ef953f6a473eb69b790fa1afa7c0b76d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3965aaeeb958ccea911ff08d45da2c16ef953f6a473eb69b790fa1afa7c0b76d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a7e30f2b77bb97ed583ee189ed72dfe9ad2a3928c67eb6d5aade5f1467f5d332_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a7e30f2b77bb97ed583ee189ed72dfe9ad2a3928c67eb6d5aade5f1467f5d332_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a7e30f2b77bb97ed583ee189ed72dfe9ad2a3928c67eb6d5aade5f1467f5d332_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b3925f84e0f1311b6a2461b89da2d45c79d93fb87c927e8211581a320ca9f9d4_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b3925f84e0f1311b6a2461b89da2d45c79d93fb87c927e8211581a320ca9f9d4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b3925f84e0f1311b6a2461b89da2d45c79d93fb87c927e8211581a320ca9f9d4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dfa66f12770ded49cbc84646d0c22440a157fcc71704d9162e1336a26331d9fc_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dfa66f12770ded49cbc84646d0c22440a157fcc71704d9162e1336a26331d9fc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dfa66f12770ded49cbc84646d0c22440a157fcc71704d9162e1336a26331d9fc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4601d8011ff56e11bb8821db387d98354312a371bd8670cf915bfa9dd3de99be_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4601d8011ff56e11bb8821db387d98354312a371bd8670cf915bfa9dd3de99be_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4601d8011ff56e11bb8821db387d98354312a371bd8670cf915bfa9dd3de99be_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59850338d772efb690f2016093b01feeb4dd3c73805d77c26172ef7f293f1a55_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59850338d772efb690f2016093b01feeb4dd3c73805d77c26172ef7f293f1a55_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59850338d772efb690f2016093b01feeb4dd3c73805d77c26172ef7f293f1a55_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7fe48ad9f89f61203bd0ee397ccf7c5d9d37ec30b05ba837dc1089fe6ee67068_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7fe48ad9f89f61203bd0ee397ccf7c5d9d37ec30b05ba837dc1089fe6ee67068_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7fe48ad9f89f61203bd0ee397ccf7c5d9d37ec30b05ba837dc1089fe6ee67068_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9cbca78a3a21d65303eba79b841fbe67f53b0a65fc82879534266075deef35d4_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9cbca78a3a21d65303eba79b841fbe67f53b0a65fc82879534266075deef35d4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9cbca78a3a21d65303eba79b841fbe67f53b0a65fc82879534266075deef35d4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:5b648181cb5f1db70ab87fbf67b017c76fc1f83f7add0eacb658bc723763e3e1_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:5b648181cb5f1db70ab87fbf67b017c76fc1f83f7add0eacb658bc723763e3e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:5b648181cb5f1db70ab87fbf67b017c76fc1f83f7add0eacb658bc723763e3e1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:748bda8560c46129d59afd0680c6ce7421d5bbe007cde1e750a8dc9c417cc88e_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:748bda8560c46129d59afd0680c6ce7421d5bbe007cde1e750a8dc9c417cc88e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:748bda8560c46129d59afd0680c6ce7421d5bbe007cde1e750a8dc9c417cc88e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:776c81365d8979f2ca91127ff47d38362c7a1682643bb70d9f221a35b4c1f05c_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:776c81365d8979f2ca91127ff47d38362c7a1682643bb70d9f221a35b4c1f05c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:776c81365d8979f2ca91127ff47d38362c7a1682643bb70d9f221a35b4c1f05c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6deb824bf0fdd43b4c1d89e8b8601e05b1b09dd1b89922fbb6e3ca7ef7bdfea_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6deb824bf0fdd43b4c1d89e8b8601e05b1b09dd1b89922fbb6e3ca7ef7bdfea_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6deb824bf0fdd43b4c1d89e8b8601e05b1b09dd1b89922fbb6e3ca7ef7bdfea_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:35b685780d05bc62b306783208ceea2a99b78ec1e38099d25ab9e27fe64fc2e9_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:35b685780d05bc62b306783208ceea2a99b78ec1e38099d25ab9e27fe64fc2e9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:35b685780d05bc62b306783208ceea2a99b78ec1e38099d25ab9e27fe64fc2e9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:38b7e234acdefe69fa3c01d50447aecf4314443f72410df6b81d9b7d66d8281c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:38b7e234acdefe69fa3c01d50447aecf4314443f72410df6b81d9b7d66d8281c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:38b7e234acdefe69fa3c01d50447aecf4314443f72410df6b81d9b7d66d8281c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5cbf178c6594a373950ddf0e3c81452aa4163b6e4ebf30a735207a2523cf918a_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5cbf178c6594a373950ddf0e3c81452aa4163b6e4ebf30a735207a2523cf918a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5cbf178c6594a373950ddf0e3c81452aa4163b6e4ebf30a735207a2523cf918a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:93c75b2ad4a4b85855a1e63cf1e1ca7e0a7b615c771b857d9bfebb7651d18871_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:93c75b2ad4a4b85855a1e63cf1e1ca7e0a7b615c771b857d9bfebb7651d18871_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:93c75b2ad4a4b85855a1e63cf1e1ca7e0a7b615c771b857d9bfebb7651d18871_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:3605def86edd8ea7f97a2e46ead0764197dfb13a9b5fd00052d91e5eb7e9fafb_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:3605def86edd8ea7f97a2e46ead0764197dfb13a9b5fd00052d91e5eb7e9fafb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:3605def86edd8ea7f97a2e46ead0764197dfb13a9b5fd00052d91e5eb7e9fafb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:e1fa556d3b407ce1489283a4111eafad610475cbb18d17e238cd20bdc24910dd_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e1fa556d3b407ce1489283a4111eafad610475cbb18d17e238cd20bdc24910dd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:e1fa556d3b407ce1489283a4111eafad610475cbb18d17e238cd20bdc24910dd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:e4ac1d06fcc633033dbac0db2749c09678ef71c109c1efd75ad31ecda396f721_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e4ac1d06fcc633033dbac0db2749c09678ef71c109c1efd75ad31ecda396f721_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:e4ac1d06fcc633033dbac0db2749c09678ef71c109c1efd75ad31ecda396f721_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:edb5c32f8172251350021de785fabeb9a00a0d8250758f7857f9ea675c74f540_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:edb5c32f8172251350021de785fabeb9a00a0d8250758f7857f9ea675c74f540_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:edb5c32f8172251350021de785fabeb9a00a0d8250758f7857f9ea675c74f540_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:2db7e64a9345be2d431e0ba15601ee9cc8d8dfc219a757a0f7a664d521e8adda_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:2db7e64a9345be2d431e0ba15601ee9cc8d8dfc219a757a0f7a664d521e8adda_s390x"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:2db7e64a9345be2d431e0ba15601ee9cc8d8dfc219a757a0f7a664d521e8adda_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:67bc0d4e819af067717ddcf765b4d565ba2f953c65633c122577fe192a6bea0b_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:67bc0d4e819af067717ddcf765b4d565ba2f953c65633c122577fe192a6bea0b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:67bc0d4e819af067717ddcf765b4d565ba2f953c65633c122577fe192a6bea0b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:7c48b8be9465a9f1b14db62cb2a1b4f2799df16407f306e9ed085946ebbd8d30_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:7c48b8be9465a9f1b14db62cb2a1b4f2799df16407f306e9ed085946ebbd8d30_arm64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:7c48b8be9465a9f1b14db62cb2a1b4f2799df16407f306e9ed085946ebbd8d30_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a4770ea3815a2528058f98f6952dbf58ff2d7ac12fd36f8119568c03eb5b0263_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a4770ea3815a2528058f98f6952dbf58ff2d7ac12fd36f8119568c03eb5b0263_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a4770ea3815a2528058f98f6952dbf58ff2d7ac12fd36f8119568c03eb5b0263_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:0100f495023b4ede4318d4cf15f68b9e33f0ba0b48331ce8cebf9250152f3211_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:0100f495023b4ede4318d4cf15f68b9e33f0ba0b48331ce8cebf9250152f3211_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:0100f495023b4ede4318d4cf15f68b9e33f0ba0b48331ce8cebf9250152f3211_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:222f4a27a841f4431f3fb204e1c7d3b55fa030495319514eecb26292c3beb0a0_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:222f4a27a841f4431f3fb204e1c7d3b55fa030495319514eecb26292c3beb0a0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:222f4a27a841f4431f3fb204e1c7d3b55fa030495319514eecb26292c3beb0a0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:db078402e0278f7dc1a0626bf3afe14c2c4221dd438708136de4a93bb0ee70c4_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:db078402e0278f7dc1a0626bf3afe14c2c4221dd438708136de4a93bb0ee70c4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:db078402e0278f7dc1a0626bf3afe14c2c4221dd438708136de4a93bb0ee70c4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:fcdcc373e6c1ee28739e8883c4c6b447267987e34b9404ae693cf4331aeac76a_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fcdcc373e6c1ee28739e8883c4c6b447267987e34b9404ae693cf4331aeac76a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:fcdcc373e6c1ee28739e8883c4c6b447267987e34b9404ae693cf4331aeac76a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c4059a5b02bdd9d01fed234cde35e9c45e812cc4ee5be35f00ba806f0d84f3d9_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c4059a5b02bdd9d01fed234cde35e9c45e812cc4ee5be35f00ba806f0d84f3d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c4059a5b02bdd9d01fed234cde35e9c45e812cc4ee5be35f00ba806f0d84f3d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f553364c160f85a326a63ef456658486e384c56ed0b1af539ebea2d2e503c81e_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f553364c160f85a326a63ef456658486e384c56ed0b1af539ebea2d2e503c81e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f553364c160f85a326a63ef456658486e384c56ed0b1af539ebea2d2e503c81e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30af84e015601d39ad0b62c14cd5ad901ae6a4450ff247ab265b78eb8fac39a3_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30af84e015601d39ad0b62c14cd5ad901ae6a4450ff247ab265b78eb8fac39a3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30af84e015601d39ad0b62c14cd5ad901ae6a4450ff247ab265b78eb8fac39a3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:eeb09578f651f65f8f8216cac46869034bf17bff001a2ed73d96d11772532666_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:eeb09578f651f65f8f8216cac46869034bf17bff001a2ed73d96d11772532666_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:eeb09578f651f65f8f8216cac46869034bf17bff001a2ed73d96d11772532666_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:3dc64c49b4ebe48c00a1e75fdc94bbd8828adf9118e5af8d03d51a245f1112a6_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:3dc64c49b4ebe48c00a1e75fdc94bbd8828adf9118e5af8d03d51a245f1112a6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:3dc64c49b4ebe48c00a1e75fdc94bbd8828adf9118e5af8d03d51a245f1112a6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:6e36fd9c87b45f4257f9853d69dc676dfd561c408ddbfbf1c247579a62c54350_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:6e36fd9c87b45f4257f9853d69dc676dfd561c408ddbfbf1c247579a62c54350_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:6e36fd9c87b45f4257f9853d69dc676dfd561c408ddbfbf1c247579a62c54350_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:adf0ed6be1fc6efe5c78191efc5094efd8663b0c3ec3815f7c824f9919045c5b_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:adf0ed6be1fc6efe5c78191efc5094efd8663b0c3ec3815f7c824f9919045c5b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:adf0ed6be1fc6efe5c78191efc5094efd8663b0c3ec3815f7c824f9919045c5b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c604800d8da5342d1a2d3c8d684844d66c4df5d03b686b0666e109aab6dc984b_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c604800d8da5342d1a2d3c8d684844d66c4df5d03b686b0666e109aab6dc984b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c604800d8da5342d1a2d3c8d684844d66c4df5d03b686b0666e109aab6dc984b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:8d5c598393328496de5fafd9117d9d4f9fa4fcfb8c5418ade4df1604de18207a_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:8d5c598393328496de5fafd9117d9d4f9fa4fcfb8c5418ade4df1604de18207a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:8d5c598393328496de5fafd9117d9d4f9fa4fcfb8c5418ade4df1604de18207a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a91a92813ffb55ea55c55c27085ceceaef7734567cb916fb9bdbb18d59a10e12_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a91a92813ffb55ea55c55c27085ceceaef7734567cb916fb9bdbb18d59a10e12_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a91a92813ffb55ea55c55c27085ceceaef7734567cb916fb9bdbb18d59a10e12_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:d456e8be4a3a28609cd29dda8c9f6fa46130c8a3d421e23c97d762d089bbe5b6_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:d456e8be4a3a28609cd29dda8c9f6fa46130c8a3d421e23c97d762d089bbe5b6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:d456e8be4a3a28609cd29dda8c9f6fa46130c8a3d421e23c97d762d089bbe5b6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:ed64b71e99e3e436e96d00d475870df08877316e3f38df129dfb62d40ef4c45b_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:ed64b71e99e3e436e96d00d475870df08877316e3f38df129dfb62d40ef4c45b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:ed64b71e99e3e436e96d00d475870df08877316e3f38df129dfb62d40ef4c45b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:50035776c45729ee560a831d79b3c8afc24a5691167e8c583eadea2474e23641_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:50035776c45729ee560a831d79b3c8afc24a5691167e8c583eadea2474e23641_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:50035776c45729ee560a831d79b3c8afc24a5691167e8c583eadea2474e23641_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:529836546956099d5d3b03861187b4bf92be0fcce6fbe95e5d229d6d5923c28c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:529836546956099d5d3b03861187b4bf92be0fcce6fbe95e5d229d6d5923c28c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:529836546956099d5d3b03861187b4bf92be0fcce6fbe95e5d229d6d5923c28c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:53f6f7a759a936966f39d97e1a7c0b10c86e02122557d710f14f0289f0b673a5_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:53f6f7a759a936966f39d97e1a7c0b10c86e02122557d710f14f0289f0b673a5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:53f6f7a759a936966f39d97e1a7c0b10c86e02122557d710f14f0289f0b673a5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f56649d00f40db610f0a6fae6827575adbf58b70368c0dad73c794a3c77a35df_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f56649d00f40db610f0a6fae6827575adbf58b70368c0dad73c794a3c77a35df_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f56649d00f40db610f0a6fae6827575adbf58b70368c0dad73c794a3c77a35df_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:0e8ab3244ad637aba8448bd161d3a06c85a68afe7ea08e25064c4ed16c7ef650_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:0e8ab3244ad637aba8448bd161d3a06c85a68afe7ea08e25064c4ed16c7ef650_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:0e8ab3244ad637aba8448bd161d3a06c85a68afe7ea08e25064c4ed16c7ef650_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:280c976f5b58de0920c9ec4e2284cab56077dc975a46146aeb53509c4b302b83_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:280c976f5b58de0920c9ec4e2284cab56077dc975a46146aeb53509c4b302b83_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:280c976f5b58de0920c9ec4e2284cab56077dc975a46146aeb53509c4b302b83_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:6b5e8518bc692c328963e632a4f0a910761ec536a8f4ed717a576c4bac3ce963_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:6b5e8518bc692c328963e632a4f0a910761ec536a8f4ed717a576c4bac3ce963_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:6b5e8518bc692c328963e632a4f0a910761ec536a8f4ed717a576c4bac3ce963_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:df7c038aab12b439d56efe938bc673a24018e023a8de1e1c7aa416e042c55561_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:df7c038aab12b439d56efe938bc673a24018e023a8de1e1c7aa416e042c55561_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:df7c038aab12b439d56efe938bc673a24018e023a8de1e1c7aa416e042c55561_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0d7ec956e636933e576c00924726bd24a267bf46a9510a9e50b7a3e79f70daca_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0d7ec956e636933e576c00924726bd24a267bf46a9510a9e50b7a3e79f70daca_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0d7ec956e636933e576c00924726bd24a267bf46a9510a9e50b7a3e79f70daca_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:467ed1130abf80b62f8e0537e9977658d22dbc3cf7cd40ca96e3a54d878feedb_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:467ed1130abf80b62f8e0537e9977658d22dbc3cf7cd40ca96e3a54d878feedb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:467ed1130abf80b62f8e0537e9977658d22dbc3cf7cd40ca96e3a54d878feedb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b2d5d8ec572abb2c30a98be0de1e11ca1a2adf0c6faa3347c6a0d2ef784afeac_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b2d5d8ec572abb2c30a98be0de1e11ca1a2adf0c6faa3347c6a0d2ef784afeac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b2d5d8ec572abb2c30a98be0de1e11ca1a2adf0c6faa3347c6a0d2ef784afeac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c915c06f28341ba8aa9a1c00fc49504a8816b0610b2cf5304f89fcedca8bc478_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c915c06f28341ba8aa9a1c00fc49504a8816b0610b2cf5304f89fcedca8bc478_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c915c06f28341ba8aa9a1c00fc49504a8816b0610b2cf5304f89fcedca8bc478_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:2a325b078b73e9bfd6e92f8154c4177aeb60dbdd59657227ca37ab1bd46827af_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:2a325b078b73e9bfd6e92f8154c4177aeb60dbdd59657227ca37ab1bd46827af_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:2a325b078b73e9bfd6e92f8154c4177aeb60dbdd59657227ca37ab1bd46827af_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:671a3dabbb5b5f6b2b4620ce823d6928b65506f2acffa0104a4c2d149a223211_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:671a3dabbb5b5f6b2b4620ce823d6928b65506f2acffa0104a4c2d149a223211_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:671a3dabbb5b5f6b2b4620ce823d6928b65506f2acffa0104a4c2d149a223211_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:7d65d75e025be1ea2f6d82d14f859786f448e619422b10f68cfd4f68ae786a21_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:7d65d75e025be1ea2f6d82d14f859786f448e619422b10f68cfd4f68ae786a21_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:7d65d75e025be1ea2f6d82d14f859786f448e619422b10f68cfd4f68ae786a21_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:999c307a79cabd8e9553f5d807d4125df1fef3153ecfce17cca871d5f8051eeb_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:999c307a79cabd8e9553f5d807d4125df1fef3153ecfce17cca871d5f8051eeb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:999c307a79cabd8e9553f5d807d4125df1fef3153ecfce17cca871d5f8051eeb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:758f10fd65669acf6c81de7d53ffacf7de3b2e81498cd0f39990debd9110b69d_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:758f10fd65669acf6c81de7d53ffacf7de3b2e81498cd0f39990debd9110b69d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:758f10fd65669acf6c81de7d53ffacf7de3b2e81498cd0f39990debd9110b69d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:9d5b06a17a27074c71ca8c4005e1b6b04a4ca488eb2571279805cffc56656c03_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:9d5b06a17a27074c71ca8c4005e1b6b04a4ca488eb2571279805cffc56656c03_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:9d5b06a17a27074c71ca8c4005e1b6b04a4ca488eb2571279805cffc56656c03_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:dad9ed95f9fbba93ad7fe74761b007ca7b4da4c59a73abb1fda223e4c03a422d_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:dad9ed95f9fbba93ad7fe74761b007ca7b4da4c59a73abb1fda223e4c03a422d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:dad9ed95f9fbba93ad7fe74761b007ca7b4da4c59a73abb1fda223e4c03a422d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fcfa3ae6a7face4161aba93179d149a20d144e8a2a8564650750b4d8f0013496_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fcfa3ae6a7face4161aba93179d149a20d144e8a2a8564650750b4d8f0013496_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fcfa3ae6a7face4161aba93179d149a20d144e8a2a8564650750b4d8f0013496_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:4bd8b3ac46a8db114f1910d03bab222e17e18db8544e8d54ae8a0b1d0e24fa1f_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:4bd8b3ac46a8db114f1910d03bab222e17e18db8544e8d54ae8a0b1d0e24fa1f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:4bd8b3ac46a8db114f1910d03bab222e17e18db8544e8d54ae8a0b1d0e24fa1f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:97832034bbb82111434b4fbfe1444407ada2a083429a7efba57d55b4d610537b_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:97832034bbb82111434b4fbfe1444407ada2a083429a7efba57d55b4d610537b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:97832034bbb82111434b4fbfe1444407ada2a083429a7efba57d55b4d610537b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:a52f59971348bb0e5766a857c16818b379c404c3af300bc697ae1fc8e3f54f15_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:a52f59971348bb0e5766a857c16818b379c404c3af300bc697ae1fc8e3f54f15_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:a52f59971348bb0e5766a857c16818b379c404c3af300bc697ae1fc8e3f54f15_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:b65119938857e8150f90c3b6bbc4e92d9646b9bc6c39f467e0ba3e4662e28036_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:b65119938857e8150f90c3b6bbc4e92d9646b9bc6c39f467e0ba3e4662e28036_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:b65119938857e8150f90c3b6bbc4e92d9646b9bc6c39f467e0ba3e4662e28036_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:633d1d92e36d87a1f8adcc69c9b9810ef84ecda5b85dbfbd6eca2bd4e97a2ee7_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:633d1d92e36d87a1f8adcc69c9b9810ef84ecda5b85dbfbd6eca2bd4e97a2ee7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:633d1d92e36d87a1f8adcc69c9b9810ef84ecda5b85dbfbd6eca2bd4e97a2ee7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:6ef9d153bbf3c65f132cd7d29dbd58d01019615f03eb07967023e446bdced8c3_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:6ef9d153bbf3c65f132cd7d29dbd58d01019615f03eb07967023e446bdced8c3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:6ef9d153bbf3c65f132cd7d29dbd58d01019615f03eb07967023e446bdced8c3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:f70052e4ccac8f01affc7e0f1eaf9d14b4eb15544b0b5509fefb4e47a2a820ee_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:f70052e4ccac8f01affc7e0f1eaf9d14b4eb15544b0b5509fefb4e47a2a820ee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:f70052e4ccac8f01affc7e0f1eaf9d14b4eb15544b0b5509fefb4e47a2a820ee_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:12d9ca6fa5893e68c553fd8909113ee1a29a96d3ff3bf32f3824791681de15d9_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:12d9ca6fa5893e68c553fd8909113ee1a29a96d3ff3bf32f3824791681de15d9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:12d9ca6fa5893e68c553fd8909113ee1a29a96d3ff3bf32f3824791681de15d9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:3af4fce899db69f0df6699cec4a3e4b26439c6a18de30232f1ff145f00d5d68a_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:3af4fce899db69f0df6699cec4a3e4b26439c6a18de30232f1ff145f00d5d68a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:3af4fce899db69f0df6699cec4a3e4b26439c6a18de30232f1ff145f00d5d68a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d2fe0edcc847e8cb3727941b91149007f9c669b0bec5847a425e82212d095d79_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d2fe0edcc847e8cb3727941b91149007f9c669b0bec5847a425e82212d095d79_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d2fe0edcc847e8cb3727941b91149007f9c669b0bec5847a425e82212d095d79_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:0889d518d954d62033fefe6df255f5ba816dec01d415d13a5634132f05eeb344_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:0889d518d954d62033fefe6df255f5ba816dec01d415d13a5634132f05eeb344_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:0889d518d954d62033fefe6df255f5ba816dec01d415d13a5634132f05eeb344_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:3115448f5481f6842c97e13aaef4b9a2925a54f6998b9f48000a74faa63bbfc9_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3115448f5481f6842c97e13aaef4b9a2925a54f6998b9f48000a74faa63bbfc9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:3115448f5481f6842c97e13aaef4b9a2925a54f6998b9f48000a74faa63bbfc9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:3a07fa757f01f4899f9c27883f06f4f7ab567310f5ae6bd44e96eab22d6dd01b_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3a07fa757f01f4899f9c27883f06f4f7ab567310f5ae6bd44e96eab22d6dd01b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:3a07fa757f01f4899f9c27883f06f4f7ab567310f5ae6bd44e96eab22d6dd01b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:95c7e0528adda5ba04775f32106977c5e3d95383b6553d57c703fc3e74d50a18_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:95c7e0528adda5ba04775f32106977c5e3d95383b6553d57c703fc3e74d50a18_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:95c7e0528adda5ba04775f32106977c5e3d95383b6553d57c703fc3e74d50a18_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:04bb985f7378665fe9840691d2ab90465b726431a39518dd087d3689d6817a6a_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:04bb985f7378665fe9840691d2ab90465b726431a39518dd087d3689d6817a6a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:04bb985f7378665fe9840691d2ab90465b726431a39518dd087d3689d6817a6a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a008fe2d2aba4b5f793d1d795f04174dfecc2633856129d3786a18b641a34f2d_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a008fe2d2aba4b5f793d1d795f04174dfecc2633856129d3786a18b641a34f2d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a008fe2d2aba4b5f793d1d795f04174dfecc2633856129d3786a18b641a34f2d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c368220ebde4dcf75123e81eb9dc4e13544f64edaa79c28a21c93126e58239f6_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c368220ebde4dcf75123e81eb9dc4e13544f64edaa79c28a21c93126e58239f6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c368220ebde4dcf75123e81eb9dc4e13544f64edaa79c28a21c93126e58239f6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d4b20eee8037ab15a8e786ef3db3b1fddfc936fc59f249d893227dd1659d1ef5_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d4b20eee8037ab15a8e786ef3db3b1fddfc936fc59f249d893227dd1659d1ef5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d4b20eee8037ab15a8e786ef3db3b1fddfc936fc59f249d893227dd1659d1ef5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3f29b35a62f679a89a6cf199988f89e736707012542d72aa1761c89eef1909fc_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3f29b35a62f679a89a6cf199988f89e736707012542d72aa1761c89eef1909fc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3f29b35a62f679a89a6cf199988f89e736707012542d72aa1761c89eef1909fc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6c1b9f3900fd21b51aab4429b50959da2eec8d1fa64c70e1cc8e5ebe72a24cbd_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6c1b9f3900fd21b51aab4429b50959da2eec8d1fa64c70e1cc8e5ebe72a24cbd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6c1b9f3900fd21b51aab4429b50959da2eec8d1fa64c70e1cc8e5ebe72a24cbd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6d498d0d92f88fd51112e5b14233bd66880e081569a99000e508d5811d3afa56_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6d498d0d92f88fd51112e5b14233bd66880e081569a99000e508d5811d3afa56_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6d498d0d92f88fd51112e5b14233bd66880e081569a99000e508d5811d3afa56_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6e94ce6c4e49d6de3e1bdbc145712ac8d1a45cc841785b20cb7605c35bef5d35_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6e94ce6c4e49d6de3e1bdbc145712ac8d1a45cc841785b20cb7605c35bef5d35_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6e94ce6c4e49d6de3e1bdbc145712ac8d1a45cc841785b20cb7605c35bef5d35_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1273f2e53f3d42e861050972fb3612e33d8ec159e29fa08bd7dd0e6f896b17a6_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1273f2e53f3d42e861050972fb3612e33d8ec159e29fa08bd7dd0e6f896b17a6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1273f2e53f3d42e861050972fb3612e33d8ec159e29fa08bd7dd0e6f896b17a6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c814b9a5380c33f9da6d646d956f2ba425d1eed63e718b44f574b1c2f3f0ea5a_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c814b9a5380c33f9da6d646d956f2ba425d1eed63e718b44f574b1c2f3f0ea5a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c814b9a5380c33f9da6d646d956f2ba425d1eed63e718b44f574b1c2f3f0ea5a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f005f7a9a4bbe701274a5e59e7e0e3c3a72426b19560653575ac6caa0e28cdbf_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f005f7a9a4bbe701274a5e59e7e0e3c3a72426b19560653575ac6caa0e28cdbf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f005f7a9a4bbe701274a5e59e7e0e3c3a72426b19560653575ac6caa0e28cdbf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fc078ca1f72f833ac498c30a1de5a4c7500c83cd94a3008445373266bfe56acd_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fc078ca1f72f833ac498c30a1de5a4c7500c83cd94a3008445373266bfe56acd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fc078ca1f72f833ac498c30a1de5a4c7500c83cd94a3008445373266bfe56acd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2af9330004a06971944971326d1e8377cbbf4725f9d703db266abd7e5359d7ec_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2af9330004a06971944971326d1e8377cbbf4725f9d703db266abd7e5359d7ec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2af9330004a06971944971326d1e8377cbbf4725f9d703db266abd7e5359d7ec_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:89971adb04a2e0a67571cf02489e6e383ae971000028d30305e584aa03784348_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:89971adb04a2e0a67571cf02489e6e383ae971000028d30305e584aa03784348_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:89971adb04a2e0a67571cf02489e6e383ae971000028d30305e584aa03784348_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:a3c950362ae071e71de468b7f619678386edfdfd0855d0df075f99d993132720_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:a3c950362ae071e71de468b7f619678386edfdfd0855d0df075f99d993132720_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:a3c950362ae071e71de468b7f619678386edfdfd0855d0df075f99d993132720_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:b35a1300569e0905cb750b7217145c94e246036cd498993ead14d07e645d1fb2_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:b35a1300569e0905cb750b7217145c94e246036cd498993ead14d07e645d1fb2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:b35a1300569e0905cb750b7217145c94e246036cd498993ead14d07e645d1fb2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:1afcc680effd2ce9de75d5a8ca4b7a1940198d30e5c042094f6eba007f5d673a_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:1afcc680effd2ce9de75d5a8ca4b7a1940198d30e5c042094f6eba007f5d673a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:1afcc680effd2ce9de75d5a8ca4b7a1940198d30e5c042094f6eba007f5d673a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:8da6cb3c6dacaf49d3eedbeb0f03324a14734f4c918ffb038f41d0ab2acadd68_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:8da6cb3c6dacaf49d3eedbeb0f03324a14734f4c918ffb038f41d0ab2acadd68_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:8da6cb3c6dacaf49d3eedbeb0f03324a14734f4c918ffb038f41d0ab2acadd68_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:9235d5f0629ffad8a5af4e8a50660751684ce91eae489122c2f89bb79ee833fc_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:9235d5f0629ffad8a5af4e8a50660751684ce91eae489122c2f89bb79ee833fc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:9235d5f0629ffad8a5af4e8a50660751684ce91eae489122c2f89bb79ee833fc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:ec49da4e5124996506d50392d8b7078d00c5862bea5e229e7351b5e0e6532c6f_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:ec49da4e5124996506d50392d8b7078d00c5862bea5e229e7351b5e0e6532c6f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:ec49da4e5124996506d50392d8b7078d00c5862bea5e229e7351b5e0e6532c6f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7c1c1e7d2af533ee43c92204d4e87104f305cbde1af7c8531fa8f1299c16a3ff_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7c1c1e7d2af533ee43c92204d4e87104f305cbde1af7c8531fa8f1299c16a3ff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7c1c1e7d2af533ee43c92204d4e87104f305cbde1af7c8531fa8f1299c16a3ff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:b1d620feb486ef28423ee30cf03dedd26c30f589b12d87fff47a19cbcde4c3c4_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:b1d620feb486ef28423ee30cf03dedd26c30f589b12d87fff47a19cbcde4c3c4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:b1d620feb486ef28423ee30cf03dedd26c30f589b12d87fff47a19cbcde4c3c4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d13a4baf04347af18f6eaa4cbdcd5f847ebcd396efedeb89ecf1393cd1e378f7_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d13a4baf04347af18f6eaa4cbdcd5f847ebcd396efedeb89ecf1393cd1e378f7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d13a4baf04347af18f6eaa4cbdcd5f847ebcd396efedeb89ecf1393cd1e378f7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ecceb25263477c9c9aa06a38df00fc004dd471ee9cccfbdfbc280c29d62f275b_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ecceb25263477c9c9aa06a38df00fc004dd471ee9cccfbdfbc280c29d62f275b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ecceb25263477c9c9aa06a38df00fc004dd471ee9cccfbdfbc280c29d62f275b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:932692970cab5f163ce35ed82c9cbbb70c8a7b2224b82d4bab39c86aaef4609b_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:932692970cab5f163ce35ed82c9cbbb70c8a7b2224b82d4bab39c86aaef4609b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:932692970cab5f163ce35ed82c9cbbb70c8a7b2224b82d4bab39c86aaef4609b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:9d157aa28bd24d12e49d76723cb91a19f9bc840a02d4850f94b9110530b76e7e_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:9d157aa28bd24d12e49d76723cb91a19f9bc840a02d4850f94b9110530b76e7e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:9d157aa28bd24d12e49d76723cb91a19f9bc840a02d4850f94b9110530b76e7e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:b5c8be4282dce9ca844df81ff8696bdd5fd25bb58b51c2061d3a3643e3f8dc2a_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:b5c8be4282dce9ca844df81ff8696bdd5fd25bb58b51c2061d3a3643e3f8dc2a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:b5c8be4282dce9ca844df81ff8696bdd5fd25bb58b51c2061d3a3643e3f8dc2a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6265c12a8b31624fe4257abad1889839e2e1612167dafa7274b8d614fdfee64e_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6265c12a8b31624fe4257abad1889839e2e1612167dafa7274b8d614fdfee64e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6265c12a8b31624fe4257abad1889839e2e1612167dafa7274b8d614fdfee64e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:70857d797ad076f5f20217e39673aa6abb0647ecbaf95ab8252075f43a68c073_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:70857d797ad076f5f20217e39673aa6abb0647ecbaf95ab8252075f43a68c073_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:70857d797ad076f5f20217e39673aa6abb0647ecbaf95ab8252075f43a68c073_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ce8fe5503b8bcb1bb338f06dc100f0bed5f85340eda1b73adb58d92e7aaec22c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ce8fe5503b8bcb1bb338f06dc100f0bed5f85340eda1b73adb58d92e7aaec22c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ce8fe5503b8bcb1bb338f06dc100f0bed5f85340eda1b73adb58d92e7aaec22c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3b597f3bd5af1c355f4e7c0ed012ca06697cbc37b9bf9a23a5c5f4d0d8162321_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3b597f3bd5af1c355f4e7c0ed012ca06697cbc37b9bf9a23a5c5f4d0d8162321_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3b597f3bd5af1c355f4e7c0ed012ca06697cbc37b9bf9a23a5c5f4d0d8162321_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3fe5d5a4ba52d689ec4b106ed8899e5fd75759671a6192641e2e24873707db77_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3fe5d5a4ba52d689ec4b106ed8899e5fd75759671a6192641e2e24873707db77_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3fe5d5a4ba52d689ec4b106ed8899e5fd75759671a6192641e2e24873707db77_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:557cefcdfef854b4ef381acf2f7de1bd1cf3f29a54398616043c6abcbc8a81f0_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:557cefcdfef854b4ef381acf2f7de1bd1cf3f29a54398616043c6abcbc8a81f0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:557cefcdfef854b4ef381acf2f7de1bd1cf3f29a54398616043c6abcbc8a81f0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0bdf015e02c235268ce9fefafcb7b841266f434448ae5aaa9ad66e49ed36a39_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0bdf015e02c235268ce9fefafcb7b841266f434448ae5aaa9ad66e49ed36a39_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0bdf015e02c235268ce9fefafcb7b841266f434448ae5aaa9ad66e49ed36a39_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:22969e24366f0b43d2cf11c30157842f595bc54976ac096ede75fbdcc5d4985f_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:22969e24366f0b43d2cf11c30157842f595bc54976ac096ede75fbdcc5d4985f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:22969e24366f0b43d2cf11c30157842f595bc54976ac096ede75fbdcc5d4985f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3b487d6d2f8191f74b599cd30b8c982010c10409fd291eb1dc4c6c7b683f7cc0_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3b487d6d2f8191f74b599cd30b8c982010c10409fd291eb1dc4c6c7b683f7cc0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3b487d6d2f8191f74b599cd30b8c982010c10409fd291eb1dc4c6c7b683f7cc0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7da1135f319c0f3086b822465dfe0d5e1d1d7b547b92dbd42dee8286c8f5c68f_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7da1135f319c0f3086b822465dfe0d5e1d1d7b547b92dbd42dee8286c8f5c68f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7da1135f319c0f3086b822465dfe0d5e1d1d7b547b92dbd42dee8286c8f5c68f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:e3b0258cdf56b709000aad847e7995099da913bf27676c138a5f9b0ea585bcac_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:e3b0258cdf56b709000aad847e7995099da913bf27676c138a5f9b0ea585bcac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:e3b0258cdf56b709000aad847e7995099da913bf27676c138a5f9b0ea585bcac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a26f61e6063fca59ba6ab989888880ce959e81bb54b552ef7bd81a89d69b2b77_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a26f61e6063fca59ba6ab989888880ce959e81bb54b552ef7bd81a89d69b2b77_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a26f61e6063fca59ba6ab989888880ce959e81bb54b552ef7bd81a89d69b2b77_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c115cba6d9973e91e208f56a315676b56657e5cf7863d19c0a7103f13edb9b44_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c115cba6d9973e91e208f56a315676b56657e5cf7863d19c0a7103f13edb9b44_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c115cba6d9973e91e208f56a315676b56657e5cf7863d19c0a7103f13edb9b44_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ccb1f539fd2f75a062fc2ed4b0d7f27c360aef121f933975e9ef9235af453934_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ccb1f539fd2f75a062fc2ed4b0d7f27c360aef121f933975e9ef9235af453934_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ccb1f539fd2f75a062fc2ed4b0d7f27c360aef121f933975e9ef9235af453934_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:e7a8657e23e6dd922ea658aa52e8145254cd5753589e5ab3732a0d1d574e46f2_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:e7a8657e23e6dd922ea658aa52e8145254cd5753589e5ab3732a0d1d574e46f2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:e7a8657e23e6dd922ea658aa52e8145254cd5753589e5ab3732a0d1d574e46f2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:0ac2a7fd509e0f905d2807f93051fef189de6febdf428b8c14e2618e6b70fe7f_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:0ac2a7fd509e0f905d2807f93051fef189de6febdf428b8c14e2618e6b70fe7f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:0ac2a7fd509e0f905d2807f93051fef189de6febdf428b8c14e2618e6b70fe7f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:18bc241751cb6151f5b879ca160aeea4f08290e3fa0922e2c01eded3a9c44919_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:18bc241751cb6151f5b879ca160aeea4f08290e3fa0922e2c01eded3a9c44919_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:18bc241751cb6151f5b879ca160aeea4f08290e3fa0922e2c01eded3a9c44919_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:ff30de805aae0da846920093dafb42ca2266b48d7b232ce774070fc1c0da5709_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:ff30de805aae0da846920093dafb42ca2266b48d7b232ce774070fc1c0da5709_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:ff30de805aae0da846920093dafb42ca2266b48d7b232ce774070fc1c0da5709_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:10efa408842bcf0b21fad1e720b1a05dc849b5965a891ac470cb8540f517a54a_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:10efa408842bcf0b21fad1e720b1a05dc849b5965a891ac470cb8540f517a54a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:10efa408842bcf0b21fad1e720b1a05dc849b5965a891ac470cb8540f517a54a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:61967b9608d0920d92492b9fca096e3598f389329db9cf64c2eb6bd75b846777_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:61967b9608d0920d92492b9fca096e3598f389329db9cf64c2eb6bd75b846777_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:61967b9608d0920d92492b9fca096e3598f389329db9cf64c2eb6bd75b846777_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:77f97aa79f52695ab5dfc605b780692847051e9dd679789a0f355510ff6cfe51_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:77f97aa79f52695ab5dfc605b780692847051e9dd679789a0f355510ff6cfe51_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:77f97aa79f52695ab5dfc605b780692847051e9dd679789a0f355510ff6cfe51_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:041d72bac1ff9895f91c83b21a4f92499b948c13354fd074393bb7b9294d46c0_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:041d72bac1ff9895f91c83b21a4f92499b948c13354fd074393bb7b9294d46c0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:041d72bac1ff9895f91c83b21a4f92499b948c13354fd074393bb7b9294d46c0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:505e422599401fbf23ce7000b02929b67d389c9d437974c8fdf91a0ec76061ee_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:505e422599401fbf23ce7000b02929b67d389c9d437974c8fdf91a0ec76061ee_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:505e422599401fbf23ce7000b02929b67d389c9d437974c8fdf91a0ec76061ee_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:e6a4680ab3d78db90ff3cf6502c8e1987844f5c5d8a2c920d2aeb9c8607f8d5e_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:e6a4680ab3d78db90ff3cf6502c8e1987844f5c5d8a2c920d2aeb9c8607f8d5e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:e6a4680ab3d78db90ff3cf6502c8e1987844f5c5d8a2c920d2aeb9c8607f8d5e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:82c20bceaf5cb9e4d3e98fa58c98a679c05d55482519ea3fa080aabeab34cdf7_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:82c20bceaf5cb9e4d3e98fa58c98a679c05d55482519ea3fa080aabeab34cdf7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:82c20bceaf5cb9e4d3e98fa58c98a679c05d55482519ea3fa080aabeab34cdf7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:ba573576b17d3230c3893819b2e570a0f5c2c9760935b2c882c57b2da99696f5_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:ba573576b17d3230c3893819b2e570a0f5c2c9760935b2c882c57b2da99696f5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:ba573576b17d3230c3893819b2e570a0f5c2c9760935b2c882c57b2da99696f5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:d83381f446c0dd432b817203f7e86897fd07a8e5bae54a537edb4712fa6fc264_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:d83381f446c0dd432b817203f7e86897fd07a8e5bae54a537edb4712fa6fc264_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:d83381f446c0dd432b817203f7e86897fd07a8e5bae54a537edb4712fa6fc264_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:1222990acec343a998b5085dd11a44583d86b7cc76d8f99b69d8a287116dd57b_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:1222990acec343a998b5085dd11a44583d86b7cc76d8f99b69d8a287116dd57b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:1222990acec343a998b5085dd11a44583d86b7cc76d8f99b69d8a287116dd57b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:a80bc249c918d1cd92e3c46de8e87b388783ae93b9ac95839eb3b0c0efb8d8a7_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:a80bc249c918d1cd92e3c46de8e87b388783ae93b9ac95839eb3b0c0efb8d8a7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:a80bc249c918d1cd92e3c46de8e87b388783ae93b9ac95839eb3b0c0efb8d8a7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:cd6243cac5a039740a5b47baf91141ed3e70cb5675cec93c93434201d374a6f2_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:cd6243cac5a039740a5b47baf91141ed3e70cb5675cec93c93434201d374a6f2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:cd6243cac5a039740a5b47baf91141ed3e70cb5675cec93c93434201d374a6f2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:78dd8bba83fef4a8fffaa7b65ecf9f9c50567eb051f3015c8bdefbaa8334de5c_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:78dd8bba83fef4a8fffaa7b65ecf9f9c50567eb051f3015c8bdefbaa8334de5c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:78dd8bba83fef4a8fffaa7b65ecf9f9c50567eb051f3015c8bdefbaa8334de5c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:b4a51cacc8a06fb6588ea140e3b50ff0166554e8d7b38c77a13be4bab9885356_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:b4a51cacc8a06fb6588ea140e3b50ff0166554e8d7b38c77a13be4bab9885356_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:b4a51cacc8a06fb6588ea140e3b50ff0166554e8d7b38c77a13be4bab9885356_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:fd24147630533238a126ea21fbba484239135a15023c524137fc8ea25a7065ca_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:fd24147630533238a126ea21fbba484239135a15023c524137fc8ea25a7065ca_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:fd24147630533238a126ea21fbba484239135a15023c524137fc8ea25a7065ca_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:88f1d696cd44e19a0852b3d51ba224129b920c5d1859870dc36de53e3cb95c84_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:88f1d696cd44e19a0852b3d51ba224129b920c5d1859870dc36de53e3cb95c84_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:88f1d696cd44e19a0852b3d51ba224129b920c5d1859870dc36de53e3cb95c84_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:8acaa460c5ae992714e25d957948477118dfa2eb6adfd0d84a457b9bfdba54d2_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:8acaa460c5ae992714e25d957948477118dfa2eb6adfd0d84a457b9bfdba54d2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:8acaa460c5ae992714e25d957948477118dfa2eb6adfd0d84a457b9bfdba54d2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b23ea9fa8eaa75fb8e0acfa6f45ff360a8784627cc3fad5d608a80181f193c3f_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b23ea9fa8eaa75fb8e0acfa6f45ff360a8784627cc3fad5d608a80181f193c3f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b23ea9fa8eaa75fb8e0acfa6f45ff360a8784627cc3fad5d608a80181f193c3f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b70ef1d999b9f5308ecc361d6e4b74c8da65658d1d6802c731b6aa3a24725dc0_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b70ef1d999b9f5308ecc361d6e4b74c8da65658d1d6802c731b6aa3a24725dc0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b70ef1d999b9f5308ecc361d6e4b74c8da65658d1d6802c731b6aa3a24725dc0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:402f0bc32520a6391d25b5fd70e323df8f810aaa32d6f4a4ec190c32f851a153_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:402f0bc32520a6391d25b5fd70e323df8f810aaa32d6f4a4ec190c32f851a153_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:402f0bc32520a6391d25b5fd70e323df8f810aaa32d6f4a4ec190c32f851a153_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:5d95ebdf8eba75315f3e296f24533697ca66e3b828b886e12f0957d197ee388a_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:5d95ebdf8eba75315f3e296f24533697ca66e3b828b886e12f0957d197ee388a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:5d95ebdf8eba75315f3e296f24533697ca66e3b828b886e12f0957d197ee388a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:637f6b5eb27d7a38e108b070130b6a52c0f44923d584ca65534cd88623d86f40_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:637f6b5eb27d7a38e108b070130b6a52c0f44923d584ca65534cd88623d86f40_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:637f6b5eb27d7a38e108b070130b6a52c0f44923d584ca65534cd88623d86f40_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6c87ec100726f3a8c65475666e604062f391ce3a8d9f516eae64ef7d51247fba_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6c87ec100726f3a8c65475666e604062f391ce3a8d9f516eae64ef7d51247fba_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6c87ec100726f3a8c65475666e604062f391ce3a8d9f516eae64ef7d51247fba_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:61059dc3377fbd1c6d7426712242943cec1ae8a76752709afd421a618e143b47_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:61059dc3377fbd1c6d7426712242943cec1ae8a76752709afd421a618e143b47_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:61059dc3377fbd1c6d7426712242943cec1ae8a76752709afd421a618e143b47_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:baa34b4e2cccff9bc62d82eb6552639010785d44cb019acc69866cf2aaaa3806_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:baa34b4e2cccff9bc62d82eb6552639010785d44cb019acc69866cf2aaaa3806_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:baa34b4e2cccff9bc62d82eb6552639010785d44cb019acc69866cf2aaaa3806_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:fe4370f51955f5a8b5588b7e590a9521cb792066f6259ea0b2b032ac957be413_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:fe4370f51955f5a8b5588b7e590a9521cb792066f6259ea0b2b032ac957be413_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:fe4370f51955f5a8b5588b7e590a9521cb792066f6259ea0b2b032ac957be413_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:753de30d0d2a7db211426c9ede26bda02b91709680ca5acd2334c921e08fc088_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:753de30d0d2a7db211426c9ede26bda02b91709680ca5acd2334c921e08fc088_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:753de30d0d2a7db211426c9ede26bda02b91709680ca5acd2334c921e08fc088_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8d3a4e42a1ab884c9bbc9933b66db18c60e75a344a2d0570b10923c95d70fdb8_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8d3a4e42a1ab884c9bbc9933b66db18c60e75a344a2d0570b10923c95d70fdb8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8d3a4e42a1ab884c9bbc9933b66db18c60e75a344a2d0570b10923c95d70fdb8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9a3c8ef3d81076660d34fdeb0f7b2d7ec088383fb8666f843eff5c6efdb9016b_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9a3c8ef3d81076660d34fdeb0f7b2d7ec088383fb8666f843eff5c6efdb9016b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9a3c8ef3d81076660d34fdeb0f7b2d7ec088383fb8666f843eff5c6efdb9016b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:8451c790ba30fb6395d8074c37c150d88d2adad11920e9b999332ffdb929a328_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:cdf612d1d3001b7e2eab47bee66395dc626a6a41421a9fff247ac7f1e530c281_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:d6584c4860edb91594eda55fcb27a576c6e74313b10569079d5454553dc1b64e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:e970ac1c75d936d92009f8fbc6754079704ea6d7731f2065c345c3a1e4412cdb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3965aaeeb958ccea911ff08d45da2c16ef953f6a473eb69b790fa1afa7c0b76d_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a7e30f2b77bb97ed583ee189ed72dfe9ad2a3928c67eb6d5aade5f1467f5d332_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b3925f84e0f1311b6a2461b89da2d45c79d93fb87c927e8211581a320ca9f9d4_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dfa66f12770ded49cbc84646d0c22440a157fcc71704d9162e1336a26331d9fc_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4601d8011ff56e11bb8821db387d98354312a371bd8670cf915bfa9dd3de99be_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59850338d772efb690f2016093b01feeb4dd3c73805d77c26172ef7f293f1a55_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7fe48ad9f89f61203bd0ee397ccf7c5d9d37ec30b05ba837dc1089fe6ee67068_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9cbca78a3a21d65303eba79b841fbe67f53b0a65fc82879534266075deef35d4_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:5b648181cb5f1db70ab87fbf67b017c76fc1f83f7add0eacb658bc723763e3e1_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:748bda8560c46129d59afd0680c6ce7421d5bbe007cde1e750a8dc9c417cc88e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:776c81365d8979f2ca91127ff47d38362c7a1682643bb70d9f221a35b4c1f05c_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6deb824bf0fdd43b4c1d89e8b8601e05b1b09dd1b89922fbb6e3ca7ef7bdfea_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:35b685780d05bc62b306783208ceea2a99b78ec1e38099d25ab9e27fe64fc2e9_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:38b7e234acdefe69fa3c01d50447aecf4314443f72410df6b81d9b7d66d8281c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5cbf178c6594a373950ddf0e3c81452aa4163b6e4ebf30a735207a2523cf918a_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:93c75b2ad4a4b85855a1e63cf1e1ca7e0a7b615c771b857d9bfebb7651d18871_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:3605def86edd8ea7f97a2e46ead0764197dfb13a9b5fd00052d91e5eb7e9fafb_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e1fa556d3b407ce1489283a4111eafad610475cbb18d17e238cd20bdc24910dd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e4ac1d06fcc633033dbac0db2749c09678ef71c109c1efd75ad31ecda396f721_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:edb5c32f8172251350021de785fabeb9a00a0d8250758f7857f9ea675c74f540_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:2db7e64a9345be2d431e0ba15601ee9cc8d8dfc219a757a0f7a664d521e8adda_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:67bc0d4e819af067717ddcf765b4d565ba2f953c65633c122577fe192a6bea0b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:7c48b8be9465a9f1b14db62cb2a1b4f2799df16407f306e9ed085946ebbd8d30_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a4770ea3815a2528058f98f6952dbf58ff2d7ac12fd36f8119568c03eb5b0263_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:0100f495023b4ede4318d4cf15f68b9e33f0ba0b48331ce8cebf9250152f3211_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:222f4a27a841f4431f3fb204e1c7d3b55fa030495319514eecb26292c3beb0a0_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:db078402e0278f7dc1a0626bf3afe14c2c4221dd438708136de4a93bb0ee70c4_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fcdcc373e6c1ee28739e8883c4c6b447267987e34b9404ae693cf4331aeac76a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c4059a5b02bdd9d01fed234cde35e9c45e812cc4ee5be35f00ba806f0d84f3d9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f553364c160f85a326a63ef456658486e384c56ed0b1af539ebea2d2e503c81e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30af84e015601d39ad0b62c14cd5ad901ae6a4450ff247ab265b78eb8fac39a3_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:eeb09578f651f65f8f8216cac46869034bf17bff001a2ed73d96d11772532666_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:3dc64c49b4ebe48c00a1e75fdc94bbd8828adf9118e5af8d03d51a245f1112a6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:6e36fd9c87b45f4257f9853d69dc676dfd561c408ddbfbf1c247579a62c54350_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:adf0ed6be1fc6efe5c78191efc5094efd8663b0c3ec3815f7c824f9919045c5b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c604800d8da5342d1a2d3c8d684844d66c4df5d03b686b0666e109aab6dc984b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:8d5c598393328496de5fafd9117d9d4f9fa4fcfb8c5418ade4df1604de18207a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a91a92813ffb55ea55c55c27085ceceaef7734567cb916fb9bdbb18d59a10e12_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:d456e8be4a3a28609cd29dda8c9f6fa46130c8a3d421e23c97d762d089bbe5b6_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:ed64b71e99e3e436e96d00d475870df08877316e3f38df129dfb62d40ef4c45b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:50035776c45729ee560a831d79b3c8afc24a5691167e8c583eadea2474e23641_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:529836546956099d5d3b03861187b4bf92be0fcce6fbe95e5d229d6d5923c28c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:53f6f7a759a936966f39d97e1a7c0b10c86e02122557d710f14f0289f0b673a5_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f56649d00f40db610f0a6fae6827575adbf58b70368c0dad73c794a3c77a35df_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:0e8ab3244ad637aba8448bd161d3a06c85a68afe7ea08e25064c4ed16c7ef650_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:280c976f5b58de0920c9ec4e2284cab56077dc975a46146aeb53509c4b302b83_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:6b5e8518bc692c328963e632a4f0a910761ec536a8f4ed717a576c4bac3ce963_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:df7c038aab12b439d56efe938bc673a24018e023a8de1e1c7aa416e042c55561_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0d7ec956e636933e576c00924726bd24a267bf46a9510a9e50b7a3e79f70daca_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:467ed1130abf80b62f8e0537e9977658d22dbc3cf7cd40ca96e3a54d878feedb_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b2d5d8ec572abb2c30a98be0de1e11ca1a2adf0c6faa3347c6a0d2ef784afeac_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c915c06f28341ba8aa9a1c00fc49504a8816b0610b2cf5304f89fcedca8bc478_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:2a325b078b73e9bfd6e92f8154c4177aeb60dbdd59657227ca37ab1bd46827af_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:671a3dabbb5b5f6b2b4620ce823d6928b65506f2acffa0104a4c2d149a223211_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:7d65d75e025be1ea2f6d82d14f859786f448e619422b10f68cfd4f68ae786a21_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:999c307a79cabd8e9553f5d807d4125df1fef3153ecfce17cca871d5f8051eeb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:758f10fd65669acf6c81de7d53ffacf7de3b2e81498cd0f39990debd9110b69d_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:9d5b06a17a27074c71ca8c4005e1b6b04a4ca488eb2571279805cffc56656c03_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:dad9ed95f9fbba93ad7fe74761b007ca7b4da4c59a73abb1fda223e4c03a422d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fcfa3ae6a7face4161aba93179d149a20d144e8a2a8564650750b4d8f0013496_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:4bd8b3ac46a8db114f1910d03bab222e17e18db8544e8d54ae8a0b1d0e24fa1f_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:97832034bbb82111434b4fbfe1444407ada2a083429a7efba57d55b4d610537b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:a52f59971348bb0e5766a857c16818b379c404c3af300bc697ae1fc8e3f54f15_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:b65119938857e8150f90c3b6bbc4e92d9646b9bc6c39f467e0ba3e4662e28036_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:633d1d92e36d87a1f8adcc69c9b9810ef84ecda5b85dbfbd6eca2bd4e97a2ee7_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:6ef9d153bbf3c65f132cd7d29dbd58d01019615f03eb07967023e446bdced8c3_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:f70052e4ccac8f01affc7e0f1eaf9d14b4eb15544b0b5509fefb4e47a2a820ee_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:12d9ca6fa5893e68c553fd8909113ee1a29a96d3ff3bf32f3824791681de15d9_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:3af4fce899db69f0df6699cec4a3e4b26439c6a18de30232f1ff145f00d5d68a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d2fe0edcc847e8cb3727941b91149007f9c669b0bec5847a425e82212d095d79_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:0889d518d954d62033fefe6df255f5ba816dec01d415d13a5634132f05eeb344_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3115448f5481f6842c97e13aaef4b9a2925a54f6998b9f48000a74faa63bbfc9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3a07fa757f01f4899f9c27883f06f4f7ab567310f5ae6bd44e96eab22d6dd01b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:95c7e0528adda5ba04775f32106977c5e3d95383b6553d57c703fc3e74d50a18_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:04bb985f7378665fe9840691d2ab90465b726431a39518dd087d3689d6817a6a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a008fe2d2aba4b5f793d1d795f04174dfecc2633856129d3786a18b641a34f2d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c368220ebde4dcf75123e81eb9dc4e13544f64edaa79c28a21c93126e58239f6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d4b20eee8037ab15a8e786ef3db3b1fddfc936fc59f249d893227dd1659d1ef5_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3f29b35a62f679a89a6cf199988f89e736707012542d72aa1761c89eef1909fc_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6c1b9f3900fd21b51aab4429b50959da2eec8d1fa64c70e1cc8e5ebe72a24cbd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6d498d0d92f88fd51112e5b14233bd66880e081569a99000e508d5811d3afa56_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6e94ce6c4e49d6de3e1bdbc145712ac8d1a45cc841785b20cb7605c35bef5d35_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1273f2e53f3d42e861050972fb3612e33d8ec159e29fa08bd7dd0e6f896b17a6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c814b9a5380c33f9da6d646d956f2ba425d1eed63e718b44f574b1c2f3f0ea5a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f005f7a9a4bbe701274a5e59e7e0e3c3a72426b19560653575ac6caa0e28cdbf_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fc078ca1f72f833ac498c30a1de5a4c7500c83cd94a3008445373266bfe56acd_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2af9330004a06971944971326d1e8377cbbf4725f9d703db266abd7e5359d7ec_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:89971adb04a2e0a67571cf02489e6e383ae971000028d30305e584aa03784348_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:a3c950362ae071e71de468b7f619678386edfdfd0855d0df075f99d993132720_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:b35a1300569e0905cb750b7217145c94e246036cd498993ead14d07e645d1fb2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:1afcc680effd2ce9de75d5a8ca4b7a1940198d30e5c042094f6eba007f5d673a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:8da6cb3c6dacaf49d3eedbeb0f03324a14734f4c918ffb038f41d0ab2acadd68_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:9235d5f0629ffad8a5af4e8a50660751684ce91eae489122c2f89bb79ee833fc_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:ec49da4e5124996506d50392d8b7078d00c5862bea5e229e7351b5e0e6532c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7c1c1e7d2af533ee43c92204d4e87104f305cbde1af7c8531fa8f1299c16a3ff_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:b1d620feb486ef28423ee30cf03dedd26c30f589b12d87fff47a19cbcde4c3c4_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d13a4baf04347af18f6eaa4cbdcd5f847ebcd396efedeb89ecf1393cd1e378f7_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ecceb25263477c9c9aa06a38df00fc004dd471ee9cccfbdfbc280c29d62f275b_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:932692970cab5f163ce35ed82c9cbbb70c8a7b2224b82d4bab39c86aaef4609b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:9d157aa28bd24d12e49d76723cb91a19f9bc840a02d4850f94b9110530b76e7e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:b5c8be4282dce9ca844df81ff8696bdd5fd25bb58b51c2061d3a3643e3f8dc2a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6265c12a8b31624fe4257abad1889839e2e1612167dafa7274b8d614fdfee64e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:70857d797ad076f5f20217e39673aa6abb0647ecbaf95ab8252075f43a68c073_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ce8fe5503b8bcb1bb338f06dc100f0bed5f85340eda1b73adb58d92e7aaec22c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3b597f3bd5af1c355f4e7c0ed012ca06697cbc37b9bf9a23a5c5f4d0d8162321_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3fe5d5a4ba52d689ec4b106ed8899e5fd75759671a6192641e2e24873707db77_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:557cefcdfef854b4ef381acf2f7de1bd1cf3f29a54398616043c6abcbc8a81f0_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0bdf015e02c235268ce9fefafcb7b841266f434448ae5aaa9ad66e49ed36a39_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:22969e24366f0b43d2cf11c30157842f595bc54976ac096ede75fbdcc5d4985f_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3b487d6d2f8191f74b599cd30b8c982010c10409fd291eb1dc4c6c7b683f7cc0_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7da1135f319c0f3086b822465dfe0d5e1d1d7b547b92dbd42dee8286c8f5c68f_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:e3b0258cdf56b709000aad847e7995099da913bf27676c138a5f9b0ea585bcac_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a26f61e6063fca59ba6ab989888880ce959e81bb54b552ef7bd81a89d69b2b77_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c115cba6d9973e91e208f56a315676b56657e5cf7863d19c0a7103f13edb9b44_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ccb1f539fd2f75a062fc2ed4b0d7f27c360aef121f933975e9ef9235af453934_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:e7a8657e23e6dd922ea658aa52e8145254cd5753589e5ab3732a0d1d574e46f2_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:0ac2a7fd509e0f905d2807f93051fef189de6febdf428b8c14e2618e6b70fe7f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:18bc241751cb6151f5b879ca160aeea4f08290e3fa0922e2c01eded3a9c44919_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:ff30de805aae0da846920093dafb42ca2266b48d7b232ce774070fc1c0da5709_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:10efa408842bcf0b21fad1e720b1a05dc849b5965a891ac470cb8540f517a54a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:61967b9608d0920d92492b9fca096e3598f389329db9cf64c2eb6bd75b846777_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:77f97aa79f52695ab5dfc605b780692847051e9dd679789a0f355510ff6cfe51_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:82c20bceaf5cb9e4d3e98fa58c98a679c05d55482519ea3fa080aabeab34cdf7_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:ba573576b17d3230c3893819b2e570a0f5c2c9760935b2c882c57b2da99696f5_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:d83381f446c0dd432b817203f7e86897fd07a8e5bae54a537edb4712fa6fc264_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:88f1d696cd44e19a0852b3d51ba224129b920c5d1859870dc36de53e3cb95c84_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:8acaa460c5ae992714e25d957948477118dfa2eb6adfd0d84a457b9bfdba54d2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b23ea9fa8eaa75fb8e0acfa6f45ff360a8784627cc3fad5d608a80181f193c3f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b70ef1d999b9f5308ecc361d6e4b74c8da65658d1d6802c731b6aa3a24725dc0_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:402f0bc32520a6391d25b5fd70e323df8f810aaa32d6f4a4ec190c32f851a153_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:5d95ebdf8eba75315f3e296f24533697ca66e3b828b886e12f0957d197ee388a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:637f6b5eb27d7a38e108b070130b6a52c0f44923d584ca65534cd88623d86f40_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6c87ec100726f3a8c65475666e604062f391ce3a8d9f516eae64ef7d51247fba_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:61059dc3377fbd1c6d7426712242943cec1ae8a76752709afd421a618e143b47_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:baa34b4e2cccff9bc62d82eb6552639010785d44cb019acc69866cf2aaaa3806_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:fe4370f51955f5a8b5588b7e590a9521cb792066f6259ea0b2b032ac957be413_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:753de30d0d2a7db211426c9ede26bda02b91709680ca5acd2334c921e08fc088_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8d3a4e42a1ab884c9bbc9933b66db18c60e75a344a2d0570b10923c95d70fdb8_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9a3c8ef3d81076660d34fdeb0f7b2d7ec088383fb8666f843eff5c6efdb9016b_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:041d72bac1ff9895f91c83b21a4f92499b948c13354fd074393bb7b9294d46c0_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:505e422599401fbf23ce7000b02929b67d389c9d437974c8fdf91a0ec76061ee_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:e6a4680ab3d78db90ff3cf6502c8e1987844f5c5d8a2c920d2aeb9c8607f8d5e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:1222990acec343a998b5085dd11a44583d86b7cc76d8f99b69d8a287116dd57b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:a80bc249c918d1cd92e3c46de8e87b388783ae93b9ac95839eb3b0c0efb8d8a7_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:cd6243cac5a039740a5b47baf91141ed3e70cb5675cec93c93434201d374a6f2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:78dd8bba83fef4a8fffaa7b65ecf9f9c50567eb051f3015c8bdefbaa8334de5c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:b4a51cacc8a06fb6588ea140e3b50ff0166554e8d7b38c77a13be4bab9885356_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:fd24147630533238a126ea21fbba484239135a15023c524137fc8ea25a7065ca_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:8451c790ba30fb6395d8074c37c150d88d2adad11920e9b999332ffdb929a328_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:cdf612d1d3001b7e2eab47bee66395dc626a6a41421a9fff247ac7f1e530c281_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:d6584c4860edb91594eda55fcb27a576c6e74313b10569079d5454553dc1b64e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:e970ac1c75d936d92009f8fbc6754079704ea6d7731f2065c345c3a1e4412cdb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3965aaeeb958ccea911ff08d45da2c16ef953f6a473eb69b790fa1afa7c0b76d_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a7e30f2b77bb97ed583ee189ed72dfe9ad2a3928c67eb6d5aade5f1467f5d332_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b3925f84e0f1311b6a2461b89da2d45c79d93fb87c927e8211581a320ca9f9d4_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dfa66f12770ded49cbc84646d0c22440a157fcc71704d9162e1336a26331d9fc_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4601d8011ff56e11bb8821db387d98354312a371bd8670cf915bfa9dd3de99be_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59850338d772efb690f2016093b01feeb4dd3c73805d77c26172ef7f293f1a55_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7fe48ad9f89f61203bd0ee397ccf7c5d9d37ec30b05ba837dc1089fe6ee67068_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9cbca78a3a21d65303eba79b841fbe67f53b0a65fc82879534266075deef35d4_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:5b648181cb5f1db70ab87fbf67b017c76fc1f83f7add0eacb658bc723763e3e1_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:748bda8560c46129d59afd0680c6ce7421d5bbe007cde1e750a8dc9c417cc88e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:776c81365d8979f2ca91127ff47d38362c7a1682643bb70d9f221a35b4c1f05c_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6deb824bf0fdd43b4c1d89e8b8601e05b1b09dd1b89922fbb6e3ca7ef7bdfea_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:35b685780d05bc62b306783208ceea2a99b78ec1e38099d25ab9e27fe64fc2e9_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:38b7e234acdefe69fa3c01d50447aecf4314443f72410df6b81d9b7d66d8281c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5cbf178c6594a373950ddf0e3c81452aa4163b6e4ebf30a735207a2523cf918a_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:93c75b2ad4a4b85855a1e63cf1e1ca7e0a7b615c771b857d9bfebb7651d18871_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:3605def86edd8ea7f97a2e46ead0764197dfb13a9b5fd00052d91e5eb7e9fafb_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e1fa556d3b407ce1489283a4111eafad610475cbb18d17e238cd20bdc24910dd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e4ac1d06fcc633033dbac0db2749c09678ef71c109c1efd75ad31ecda396f721_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:edb5c32f8172251350021de785fabeb9a00a0d8250758f7857f9ea675c74f540_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:2db7e64a9345be2d431e0ba15601ee9cc8d8dfc219a757a0f7a664d521e8adda_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:67bc0d4e819af067717ddcf765b4d565ba2f953c65633c122577fe192a6bea0b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:7c48b8be9465a9f1b14db62cb2a1b4f2799df16407f306e9ed085946ebbd8d30_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a4770ea3815a2528058f98f6952dbf58ff2d7ac12fd36f8119568c03eb5b0263_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:0100f495023b4ede4318d4cf15f68b9e33f0ba0b48331ce8cebf9250152f3211_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:222f4a27a841f4431f3fb204e1c7d3b55fa030495319514eecb26292c3beb0a0_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:db078402e0278f7dc1a0626bf3afe14c2c4221dd438708136de4a93bb0ee70c4_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fcdcc373e6c1ee28739e8883c4c6b447267987e34b9404ae693cf4331aeac76a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c4059a5b02bdd9d01fed234cde35e9c45e812cc4ee5be35f00ba806f0d84f3d9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f553364c160f85a326a63ef456658486e384c56ed0b1af539ebea2d2e503c81e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30af84e015601d39ad0b62c14cd5ad901ae6a4450ff247ab265b78eb8fac39a3_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:eeb09578f651f65f8f8216cac46869034bf17bff001a2ed73d96d11772532666_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:3dc64c49b4ebe48c00a1e75fdc94bbd8828adf9118e5af8d03d51a245f1112a6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:6e36fd9c87b45f4257f9853d69dc676dfd561c408ddbfbf1c247579a62c54350_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:adf0ed6be1fc6efe5c78191efc5094efd8663b0c3ec3815f7c824f9919045c5b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c604800d8da5342d1a2d3c8d684844d66c4df5d03b686b0666e109aab6dc984b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:8d5c598393328496de5fafd9117d9d4f9fa4fcfb8c5418ade4df1604de18207a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a91a92813ffb55ea55c55c27085ceceaef7734567cb916fb9bdbb18d59a10e12_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:d456e8be4a3a28609cd29dda8c9f6fa46130c8a3d421e23c97d762d089bbe5b6_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:ed64b71e99e3e436e96d00d475870df08877316e3f38df129dfb62d40ef4c45b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:50035776c45729ee560a831d79b3c8afc24a5691167e8c583eadea2474e23641_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:529836546956099d5d3b03861187b4bf92be0fcce6fbe95e5d229d6d5923c28c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:53f6f7a759a936966f39d97e1a7c0b10c86e02122557d710f14f0289f0b673a5_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f56649d00f40db610f0a6fae6827575adbf58b70368c0dad73c794a3c77a35df_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:0e8ab3244ad637aba8448bd161d3a06c85a68afe7ea08e25064c4ed16c7ef650_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:280c976f5b58de0920c9ec4e2284cab56077dc975a46146aeb53509c4b302b83_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:6b5e8518bc692c328963e632a4f0a910761ec536a8f4ed717a576c4bac3ce963_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:df7c038aab12b439d56efe938bc673a24018e023a8de1e1c7aa416e042c55561_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0d7ec956e636933e576c00924726bd24a267bf46a9510a9e50b7a3e79f70daca_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:467ed1130abf80b62f8e0537e9977658d22dbc3cf7cd40ca96e3a54d878feedb_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b2d5d8ec572abb2c30a98be0de1e11ca1a2adf0c6faa3347c6a0d2ef784afeac_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c915c06f28341ba8aa9a1c00fc49504a8816b0610b2cf5304f89fcedca8bc478_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:2a325b078b73e9bfd6e92f8154c4177aeb60dbdd59657227ca37ab1bd46827af_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:671a3dabbb5b5f6b2b4620ce823d6928b65506f2acffa0104a4c2d149a223211_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:7d65d75e025be1ea2f6d82d14f859786f448e619422b10f68cfd4f68ae786a21_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:999c307a79cabd8e9553f5d807d4125df1fef3153ecfce17cca871d5f8051eeb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:758f10fd65669acf6c81de7d53ffacf7de3b2e81498cd0f39990debd9110b69d_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:9d5b06a17a27074c71ca8c4005e1b6b04a4ca488eb2571279805cffc56656c03_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:dad9ed95f9fbba93ad7fe74761b007ca7b4da4c59a73abb1fda223e4c03a422d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fcfa3ae6a7face4161aba93179d149a20d144e8a2a8564650750b4d8f0013496_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:4bd8b3ac46a8db114f1910d03bab222e17e18db8544e8d54ae8a0b1d0e24fa1f_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:97832034bbb82111434b4fbfe1444407ada2a083429a7efba57d55b4d610537b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:a52f59971348bb0e5766a857c16818b379c404c3af300bc697ae1fc8e3f54f15_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:b65119938857e8150f90c3b6bbc4e92d9646b9bc6c39f467e0ba3e4662e28036_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:633d1d92e36d87a1f8adcc69c9b9810ef84ecda5b85dbfbd6eca2bd4e97a2ee7_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:6ef9d153bbf3c65f132cd7d29dbd58d01019615f03eb07967023e446bdced8c3_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:f70052e4ccac8f01affc7e0f1eaf9d14b4eb15544b0b5509fefb4e47a2a820ee_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:12d9ca6fa5893e68c553fd8909113ee1a29a96d3ff3bf32f3824791681de15d9_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:3af4fce899db69f0df6699cec4a3e4b26439c6a18de30232f1ff145f00d5d68a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d2fe0edcc847e8cb3727941b91149007f9c669b0bec5847a425e82212d095d79_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:0889d518d954d62033fefe6df255f5ba816dec01d415d13a5634132f05eeb344_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3115448f5481f6842c97e13aaef4b9a2925a54f6998b9f48000a74faa63bbfc9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3a07fa757f01f4899f9c27883f06f4f7ab567310f5ae6bd44e96eab22d6dd01b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:95c7e0528adda5ba04775f32106977c5e3d95383b6553d57c703fc3e74d50a18_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:04bb985f7378665fe9840691d2ab90465b726431a39518dd087d3689d6817a6a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a008fe2d2aba4b5f793d1d795f04174dfecc2633856129d3786a18b641a34f2d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c368220ebde4dcf75123e81eb9dc4e13544f64edaa79c28a21c93126e58239f6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d4b20eee8037ab15a8e786ef3db3b1fddfc936fc59f249d893227dd1659d1ef5_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3f29b35a62f679a89a6cf199988f89e736707012542d72aa1761c89eef1909fc_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6c1b9f3900fd21b51aab4429b50959da2eec8d1fa64c70e1cc8e5ebe72a24cbd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6d498d0d92f88fd51112e5b14233bd66880e081569a99000e508d5811d3afa56_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6e94ce6c4e49d6de3e1bdbc145712ac8d1a45cc841785b20cb7605c35bef5d35_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1273f2e53f3d42e861050972fb3612e33d8ec159e29fa08bd7dd0e6f896b17a6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c814b9a5380c33f9da6d646d956f2ba425d1eed63e718b44f574b1c2f3f0ea5a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f005f7a9a4bbe701274a5e59e7e0e3c3a72426b19560653575ac6caa0e28cdbf_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fc078ca1f72f833ac498c30a1de5a4c7500c83cd94a3008445373266bfe56acd_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2af9330004a06971944971326d1e8377cbbf4725f9d703db266abd7e5359d7ec_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:89971adb04a2e0a67571cf02489e6e383ae971000028d30305e584aa03784348_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:a3c950362ae071e71de468b7f619678386edfdfd0855d0df075f99d993132720_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:b35a1300569e0905cb750b7217145c94e246036cd498993ead14d07e645d1fb2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:1afcc680effd2ce9de75d5a8ca4b7a1940198d30e5c042094f6eba007f5d673a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:8da6cb3c6dacaf49d3eedbeb0f03324a14734f4c918ffb038f41d0ab2acadd68_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:9235d5f0629ffad8a5af4e8a50660751684ce91eae489122c2f89bb79ee833fc_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:ec49da4e5124996506d50392d8b7078d00c5862bea5e229e7351b5e0e6532c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7c1c1e7d2af533ee43c92204d4e87104f305cbde1af7c8531fa8f1299c16a3ff_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:b1d620feb486ef28423ee30cf03dedd26c30f589b12d87fff47a19cbcde4c3c4_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d13a4baf04347af18f6eaa4cbdcd5f847ebcd396efedeb89ecf1393cd1e378f7_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ecceb25263477c9c9aa06a38df00fc004dd471ee9cccfbdfbc280c29d62f275b_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:932692970cab5f163ce35ed82c9cbbb70c8a7b2224b82d4bab39c86aaef4609b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:9d157aa28bd24d12e49d76723cb91a19f9bc840a02d4850f94b9110530b76e7e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:b5c8be4282dce9ca844df81ff8696bdd5fd25bb58b51c2061d3a3643e3f8dc2a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6265c12a8b31624fe4257abad1889839e2e1612167dafa7274b8d614fdfee64e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:70857d797ad076f5f20217e39673aa6abb0647ecbaf95ab8252075f43a68c073_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ce8fe5503b8bcb1bb338f06dc100f0bed5f85340eda1b73adb58d92e7aaec22c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3b597f3bd5af1c355f4e7c0ed012ca06697cbc37b9bf9a23a5c5f4d0d8162321_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3fe5d5a4ba52d689ec4b106ed8899e5fd75759671a6192641e2e24873707db77_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:557cefcdfef854b4ef381acf2f7de1bd1cf3f29a54398616043c6abcbc8a81f0_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0bdf015e02c235268ce9fefafcb7b841266f434448ae5aaa9ad66e49ed36a39_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:22969e24366f0b43d2cf11c30157842f595bc54976ac096ede75fbdcc5d4985f_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3b487d6d2f8191f74b599cd30b8c982010c10409fd291eb1dc4c6c7b683f7cc0_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7da1135f319c0f3086b822465dfe0d5e1d1d7b547b92dbd42dee8286c8f5c68f_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:e3b0258cdf56b709000aad847e7995099da913bf27676c138a5f9b0ea585bcac_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a26f61e6063fca59ba6ab989888880ce959e81bb54b552ef7bd81a89d69b2b77_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c115cba6d9973e91e208f56a315676b56657e5cf7863d19c0a7103f13edb9b44_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ccb1f539fd2f75a062fc2ed4b0d7f27c360aef121f933975e9ef9235af453934_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:e7a8657e23e6dd922ea658aa52e8145254cd5753589e5ab3732a0d1d574e46f2_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:0ac2a7fd509e0f905d2807f93051fef189de6febdf428b8c14e2618e6b70fe7f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:18bc241751cb6151f5b879ca160aeea4f08290e3fa0922e2c01eded3a9c44919_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:ff30de805aae0da846920093dafb42ca2266b48d7b232ce774070fc1c0da5709_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:10efa408842bcf0b21fad1e720b1a05dc849b5965a891ac470cb8540f517a54a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:61967b9608d0920d92492b9fca096e3598f389329db9cf64c2eb6bd75b846777_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:77f97aa79f52695ab5dfc605b780692847051e9dd679789a0f355510ff6cfe51_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:82c20bceaf5cb9e4d3e98fa58c98a679c05d55482519ea3fa080aabeab34cdf7_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:ba573576b17d3230c3893819b2e570a0f5c2c9760935b2c882c57b2da99696f5_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:d83381f446c0dd432b817203f7e86897fd07a8e5bae54a537edb4712fa6fc264_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:88f1d696cd44e19a0852b3d51ba224129b920c5d1859870dc36de53e3cb95c84_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:8acaa460c5ae992714e25d957948477118dfa2eb6adfd0d84a457b9bfdba54d2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b23ea9fa8eaa75fb8e0acfa6f45ff360a8784627cc3fad5d608a80181f193c3f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b70ef1d999b9f5308ecc361d6e4b74c8da65658d1d6802c731b6aa3a24725dc0_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:402f0bc32520a6391d25b5fd70e323df8f810aaa32d6f4a4ec190c32f851a153_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:5d95ebdf8eba75315f3e296f24533697ca66e3b828b886e12f0957d197ee388a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:637f6b5eb27d7a38e108b070130b6a52c0f44923d584ca65534cd88623d86f40_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6c87ec100726f3a8c65475666e604062f391ce3a8d9f516eae64ef7d51247fba_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:61059dc3377fbd1c6d7426712242943cec1ae8a76752709afd421a618e143b47_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:baa34b4e2cccff9bc62d82eb6552639010785d44cb019acc69866cf2aaaa3806_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:fe4370f51955f5a8b5588b7e590a9521cb792066f6259ea0b2b032ac957be413_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:753de30d0d2a7db211426c9ede26bda02b91709680ca5acd2334c921e08fc088_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8d3a4e42a1ab884c9bbc9933b66db18c60e75a344a2d0570b10923c95d70fdb8_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9a3c8ef3d81076660d34fdeb0f7b2d7ec088383fb8666f843eff5c6efdb9016b_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T07:57:34+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:041d72bac1ff9895f91c83b21a4f92499b948c13354fd074393bb7b9294d46c0_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:505e422599401fbf23ce7000b02929b67d389c9d437974c8fdf91a0ec76061ee_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:e6a4680ab3d78db90ff3cf6502c8e1987844f5c5d8a2c920d2aeb9c8607f8d5e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:1222990acec343a998b5085dd11a44583d86b7cc76d8f99b69d8a287116dd57b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:a80bc249c918d1cd92e3c46de8e87b388783ae93b9ac95839eb3b0c0efb8d8a7_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:cd6243cac5a039740a5b47baf91141ed3e70cb5675cec93c93434201d374a6f2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:78dd8bba83fef4a8fffaa7b65ecf9f9c50567eb051f3015c8bdefbaa8334de5c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:b4a51cacc8a06fb6588ea140e3b50ff0166554e8d7b38c77a13be4bab9885356_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:fd24147630533238a126ea21fbba484239135a15023c524137fc8ea25a7065ca_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25009"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:8451c790ba30fb6395d8074c37c150d88d2adad11920e9b999332ffdb929a328_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:cdf612d1d3001b7e2eab47bee66395dc626a6a41421a9fff247ac7f1e530c281_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:d6584c4860edb91594eda55fcb27a576c6e74313b10569079d5454553dc1b64e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:e970ac1c75d936d92009f8fbc6754079704ea6d7731f2065c345c3a1e4412cdb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3965aaeeb958ccea911ff08d45da2c16ef953f6a473eb69b790fa1afa7c0b76d_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a7e30f2b77bb97ed583ee189ed72dfe9ad2a3928c67eb6d5aade5f1467f5d332_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b3925f84e0f1311b6a2461b89da2d45c79d93fb87c927e8211581a320ca9f9d4_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dfa66f12770ded49cbc84646d0c22440a157fcc71704d9162e1336a26331d9fc_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4601d8011ff56e11bb8821db387d98354312a371bd8670cf915bfa9dd3de99be_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59850338d772efb690f2016093b01feeb4dd3c73805d77c26172ef7f293f1a55_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7fe48ad9f89f61203bd0ee397ccf7c5d9d37ec30b05ba837dc1089fe6ee67068_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9cbca78a3a21d65303eba79b841fbe67f53b0a65fc82879534266075deef35d4_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:5b648181cb5f1db70ab87fbf67b017c76fc1f83f7add0eacb658bc723763e3e1_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:748bda8560c46129d59afd0680c6ce7421d5bbe007cde1e750a8dc9c417cc88e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:776c81365d8979f2ca91127ff47d38362c7a1682643bb70d9f221a35b4c1f05c_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6deb824bf0fdd43b4c1d89e8b8601e05b1b09dd1b89922fbb6e3ca7ef7bdfea_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:35b685780d05bc62b306783208ceea2a99b78ec1e38099d25ab9e27fe64fc2e9_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:38b7e234acdefe69fa3c01d50447aecf4314443f72410df6b81d9b7d66d8281c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5cbf178c6594a373950ddf0e3c81452aa4163b6e4ebf30a735207a2523cf918a_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:93c75b2ad4a4b85855a1e63cf1e1ca7e0a7b615c771b857d9bfebb7651d18871_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:3605def86edd8ea7f97a2e46ead0764197dfb13a9b5fd00052d91e5eb7e9fafb_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e1fa556d3b407ce1489283a4111eafad610475cbb18d17e238cd20bdc24910dd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e4ac1d06fcc633033dbac0db2749c09678ef71c109c1efd75ad31ecda396f721_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:edb5c32f8172251350021de785fabeb9a00a0d8250758f7857f9ea675c74f540_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:2db7e64a9345be2d431e0ba15601ee9cc8d8dfc219a757a0f7a664d521e8adda_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:67bc0d4e819af067717ddcf765b4d565ba2f953c65633c122577fe192a6bea0b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:7c48b8be9465a9f1b14db62cb2a1b4f2799df16407f306e9ed085946ebbd8d30_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a4770ea3815a2528058f98f6952dbf58ff2d7ac12fd36f8119568c03eb5b0263_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:0100f495023b4ede4318d4cf15f68b9e33f0ba0b48331ce8cebf9250152f3211_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:222f4a27a841f4431f3fb204e1c7d3b55fa030495319514eecb26292c3beb0a0_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:db078402e0278f7dc1a0626bf3afe14c2c4221dd438708136de4a93bb0ee70c4_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fcdcc373e6c1ee28739e8883c4c6b447267987e34b9404ae693cf4331aeac76a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c4059a5b02bdd9d01fed234cde35e9c45e812cc4ee5be35f00ba806f0d84f3d9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f553364c160f85a326a63ef456658486e384c56ed0b1af539ebea2d2e503c81e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30af84e015601d39ad0b62c14cd5ad901ae6a4450ff247ab265b78eb8fac39a3_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:eeb09578f651f65f8f8216cac46869034bf17bff001a2ed73d96d11772532666_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:3dc64c49b4ebe48c00a1e75fdc94bbd8828adf9118e5af8d03d51a245f1112a6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:6e36fd9c87b45f4257f9853d69dc676dfd561c408ddbfbf1c247579a62c54350_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:adf0ed6be1fc6efe5c78191efc5094efd8663b0c3ec3815f7c824f9919045c5b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c604800d8da5342d1a2d3c8d684844d66c4df5d03b686b0666e109aab6dc984b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:8d5c598393328496de5fafd9117d9d4f9fa4fcfb8c5418ade4df1604de18207a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a91a92813ffb55ea55c55c27085ceceaef7734567cb916fb9bdbb18d59a10e12_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:d456e8be4a3a28609cd29dda8c9f6fa46130c8a3d421e23c97d762d089bbe5b6_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:ed64b71e99e3e436e96d00d475870df08877316e3f38df129dfb62d40ef4c45b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:50035776c45729ee560a831d79b3c8afc24a5691167e8c583eadea2474e23641_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:529836546956099d5d3b03861187b4bf92be0fcce6fbe95e5d229d6d5923c28c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:53f6f7a759a936966f39d97e1a7c0b10c86e02122557d710f14f0289f0b673a5_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f56649d00f40db610f0a6fae6827575adbf58b70368c0dad73c794a3c77a35df_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:0e8ab3244ad637aba8448bd161d3a06c85a68afe7ea08e25064c4ed16c7ef650_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:280c976f5b58de0920c9ec4e2284cab56077dc975a46146aeb53509c4b302b83_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:6b5e8518bc692c328963e632a4f0a910761ec536a8f4ed717a576c4bac3ce963_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:df7c038aab12b439d56efe938bc673a24018e023a8de1e1c7aa416e042c55561_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0d7ec956e636933e576c00924726bd24a267bf46a9510a9e50b7a3e79f70daca_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:467ed1130abf80b62f8e0537e9977658d22dbc3cf7cd40ca96e3a54d878feedb_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b2d5d8ec572abb2c30a98be0de1e11ca1a2adf0c6faa3347c6a0d2ef784afeac_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c915c06f28341ba8aa9a1c00fc49504a8816b0610b2cf5304f89fcedca8bc478_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:2a325b078b73e9bfd6e92f8154c4177aeb60dbdd59657227ca37ab1bd46827af_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:671a3dabbb5b5f6b2b4620ce823d6928b65506f2acffa0104a4c2d149a223211_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:7d65d75e025be1ea2f6d82d14f859786f448e619422b10f68cfd4f68ae786a21_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:999c307a79cabd8e9553f5d807d4125df1fef3153ecfce17cca871d5f8051eeb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:758f10fd65669acf6c81de7d53ffacf7de3b2e81498cd0f39990debd9110b69d_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:9d5b06a17a27074c71ca8c4005e1b6b04a4ca488eb2571279805cffc56656c03_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:dad9ed95f9fbba93ad7fe74761b007ca7b4da4c59a73abb1fda223e4c03a422d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fcfa3ae6a7face4161aba93179d149a20d144e8a2a8564650750b4d8f0013496_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:4bd8b3ac46a8db114f1910d03bab222e17e18db8544e8d54ae8a0b1d0e24fa1f_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:97832034bbb82111434b4fbfe1444407ada2a083429a7efba57d55b4d610537b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:a52f59971348bb0e5766a857c16818b379c404c3af300bc697ae1fc8e3f54f15_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:b65119938857e8150f90c3b6bbc4e92d9646b9bc6c39f467e0ba3e4662e28036_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:633d1d92e36d87a1f8adcc69c9b9810ef84ecda5b85dbfbd6eca2bd4e97a2ee7_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:6ef9d153bbf3c65f132cd7d29dbd58d01019615f03eb07967023e446bdced8c3_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:f70052e4ccac8f01affc7e0f1eaf9d14b4eb15544b0b5509fefb4e47a2a820ee_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:12d9ca6fa5893e68c553fd8909113ee1a29a96d3ff3bf32f3824791681de15d9_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:3af4fce899db69f0df6699cec4a3e4b26439c6a18de30232f1ff145f00d5d68a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d2fe0edcc847e8cb3727941b91149007f9c669b0bec5847a425e82212d095d79_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:0889d518d954d62033fefe6df255f5ba816dec01d415d13a5634132f05eeb344_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3115448f5481f6842c97e13aaef4b9a2925a54f6998b9f48000a74faa63bbfc9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3a07fa757f01f4899f9c27883f06f4f7ab567310f5ae6bd44e96eab22d6dd01b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:95c7e0528adda5ba04775f32106977c5e3d95383b6553d57c703fc3e74d50a18_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:04bb985f7378665fe9840691d2ab90465b726431a39518dd087d3689d6817a6a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a008fe2d2aba4b5f793d1d795f04174dfecc2633856129d3786a18b641a34f2d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c368220ebde4dcf75123e81eb9dc4e13544f64edaa79c28a21c93126e58239f6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d4b20eee8037ab15a8e786ef3db3b1fddfc936fc59f249d893227dd1659d1ef5_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3f29b35a62f679a89a6cf199988f89e736707012542d72aa1761c89eef1909fc_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6c1b9f3900fd21b51aab4429b50959da2eec8d1fa64c70e1cc8e5ebe72a24cbd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6d498d0d92f88fd51112e5b14233bd66880e081569a99000e508d5811d3afa56_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6e94ce6c4e49d6de3e1bdbc145712ac8d1a45cc841785b20cb7605c35bef5d35_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1273f2e53f3d42e861050972fb3612e33d8ec159e29fa08bd7dd0e6f896b17a6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c814b9a5380c33f9da6d646d956f2ba425d1eed63e718b44f574b1c2f3f0ea5a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f005f7a9a4bbe701274a5e59e7e0e3c3a72426b19560653575ac6caa0e28cdbf_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fc078ca1f72f833ac498c30a1de5a4c7500c83cd94a3008445373266bfe56acd_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2af9330004a06971944971326d1e8377cbbf4725f9d703db266abd7e5359d7ec_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:89971adb04a2e0a67571cf02489e6e383ae971000028d30305e584aa03784348_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:a3c950362ae071e71de468b7f619678386edfdfd0855d0df075f99d993132720_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:b35a1300569e0905cb750b7217145c94e246036cd498993ead14d07e645d1fb2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:1afcc680effd2ce9de75d5a8ca4b7a1940198d30e5c042094f6eba007f5d673a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:8da6cb3c6dacaf49d3eedbeb0f03324a14734f4c918ffb038f41d0ab2acadd68_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:9235d5f0629ffad8a5af4e8a50660751684ce91eae489122c2f89bb79ee833fc_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:ec49da4e5124996506d50392d8b7078d00c5862bea5e229e7351b5e0e6532c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7c1c1e7d2af533ee43c92204d4e87104f305cbde1af7c8531fa8f1299c16a3ff_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:b1d620feb486ef28423ee30cf03dedd26c30f589b12d87fff47a19cbcde4c3c4_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d13a4baf04347af18f6eaa4cbdcd5f847ebcd396efedeb89ecf1393cd1e378f7_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ecceb25263477c9c9aa06a38df00fc004dd471ee9cccfbdfbc280c29d62f275b_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:932692970cab5f163ce35ed82c9cbbb70c8a7b2224b82d4bab39c86aaef4609b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:9d157aa28bd24d12e49d76723cb91a19f9bc840a02d4850f94b9110530b76e7e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:b5c8be4282dce9ca844df81ff8696bdd5fd25bb58b51c2061d3a3643e3f8dc2a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6265c12a8b31624fe4257abad1889839e2e1612167dafa7274b8d614fdfee64e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:70857d797ad076f5f20217e39673aa6abb0647ecbaf95ab8252075f43a68c073_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ce8fe5503b8bcb1bb338f06dc100f0bed5f85340eda1b73adb58d92e7aaec22c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3b597f3bd5af1c355f4e7c0ed012ca06697cbc37b9bf9a23a5c5f4d0d8162321_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3fe5d5a4ba52d689ec4b106ed8899e5fd75759671a6192641e2e24873707db77_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:557cefcdfef854b4ef381acf2f7de1bd1cf3f29a54398616043c6abcbc8a81f0_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0bdf015e02c235268ce9fefafcb7b841266f434448ae5aaa9ad66e49ed36a39_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:22969e24366f0b43d2cf11c30157842f595bc54976ac096ede75fbdcc5d4985f_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3b487d6d2f8191f74b599cd30b8c982010c10409fd291eb1dc4c6c7b683f7cc0_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7da1135f319c0f3086b822465dfe0d5e1d1d7b547b92dbd42dee8286c8f5c68f_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:e3b0258cdf56b709000aad847e7995099da913bf27676c138a5f9b0ea585bcac_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a26f61e6063fca59ba6ab989888880ce959e81bb54b552ef7bd81a89d69b2b77_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c115cba6d9973e91e208f56a315676b56657e5cf7863d19c0a7103f13edb9b44_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ccb1f539fd2f75a062fc2ed4b0d7f27c360aef121f933975e9ef9235af453934_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:e7a8657e23e6dd922ea658aa52e8145254cd5753589e5ab3732a0d1d574e46f2_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:0ac2a7fd509e0f905d2807f93051fef189de6febdf428b8c14e2618e6b70fe7f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:18bc241751cb6151f5b879ca160aeea4f08290e3fa0922e2c01eded3a9c44919_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:ff30de805aae0da846920093dafb42ca2266b48d7b232ce774070fc1c0da5709_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:10efa408842bcf0b21fad1e720b1a05dc849b5965a891ac470cb8540f517a54a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:61967b9608d0920d92492b9fca096e3598f389329db9cf64c2eb6bd75b846777_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:77f97aa79f52695ab5dfc605b780692847051e9dd679789a0f355510ff6cfe51_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:041d72bac1ff9895f91c83b21a4f92499b948c13354fd074393bb7b9294d46c0_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:505e422599401fbf23ce7000b02929b67d389c9d437974c8fdf91a0ec76061ee_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:e6a4680ab3d78db90ff3cf6502c8e1987844f5c5d8a2c920d2aeb9c8607f8d5e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:82c20bceaf5cb9e4d3e98fa58c98a679c05d55482519ea3fa080aabeab34cdf7_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:ba573576b17d3230c3893819b2e570a0f5c2c9760935b2c882c57b2da99696f5_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:d83381f446c0dd432b817203f7e86897fd07a8e5bae54a537edb4712fa6fc264_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:1222990acec343a998b5085dd11a44583d86b7cc76d8f99b69d8a287116dd57b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:a80bc249c918d1cd92e3c46de8e87b388783ae93b9ac95839eb3b0c0efb8d8a7_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:cd6243cac5a039740a5b47baf91141ed3e70cb5675cec93c93434201d374a6f2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:78dd8bba83fef4a8fffaa7b65ecf9f9c50567eb051f3015c8bdefbaa8334de5c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:b4a51cacc8a06fb6588ea140e3b50ff0166554e8d7b38c77a13be4bab9885356_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:fd24147630533238a126ea21fbba484239135a15023c524137fc8ea25a7065ca_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:88f1d696cd44e19a0852b3d51ba224129b920c5d1859870dc36de53e3cb95c84_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:8acaa460c5ae992714e25d957948477118dfa2eb6adfd0d84a457b9bfdba54d2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b23ea9fa8eaa75fb8e0acfa6f45ff360a8784627cc3fad5d608a80181f193c3f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b70ef1d999b9f5308ecc361d6e4b74c8da65658d1d6802c731b6aa3a24725dc0_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:402f0bc32520a6391d25b5fd70e323df8f810aaa32d6f4a4ec190c32f851a153_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:5d95ebdf8eba75315f3e296f24533697ca66e3b828b886e12f0957d197ee388a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:637f6b5eb27d7a38e108b070130b6a52c0f44923d584ca65534cd88623d86f40_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6c87ec100726f3a8c65475666e604062f391ce3a8d9f516eae64ef7d51247fba_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:61059dc3377fbd1c6d7426712242943cec1ae8a76752709afd421a618e143b47_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:baa34b4e2cccff9bc62d82eb6552639010785d44cb019acc69866cf2aaaa3806_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:fe4370f51955f5a8b5588b7e590a9521cb792066f6259ea0b2b032ac957be413_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:753de30d0d2a7db211426c9ede26bda02b91709680ca5acd2334c921e08fc088_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8d3a4e42a1ab884c9bbc9933b66db18c60e75a344a2d0570b10923c95d70fdb8_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9a3c8ef3d81076660d34fdeb0f7b2d7ec088383fb8666f843eff5c6efdb9016b_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:8451c790ba30fb6395d8074c37c150d88d2adad11920e9b999332ffdb929a328_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:cdf612d1d3001b7e2eab47bee66395dc626a6a41421a9fff247ac7f1e530c281_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:d6584c4860edb91594eda55fcb27a576c6e74313b10569079d5454553dc1b64e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:e970ac1c75d936d92009f8fbc6754079704ea6d7731f2065c345c3a1e4412cdb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3965aaeeb958ccea911ff08d45da2c16ef953f6a473eb69b790fa1afa7c0b76d_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a7e30f2b77bb97ed583ee189ed72dfe9ad2a3928c67eb6d5aade5f1467f5d332_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b3925f84e0f1311b6a2461b89da2d45c79d93fb87c927e8211581a320ca9f9d4_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dfa66f12770ded49cbc84646d0c22440a157fcc71704d9162e1336a26331d9fc_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4601d8011ff56e11bb8821db387d98354312a371bd8670cf915bfa9dd3de99be_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59850338d772efb690f2016093b01feeb4dd3c73805d77c26172ef7f293f1a55_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7fe48ad9f89f61203bd0ee397ccf7c5d9d37ec30b05ba837dc1089fe6ee67068_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9cbca78a3a21d65303eba79b841fbe67f53b0a65fc82879534266075deef35d4_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:5b648181cb5f1db70ab87fbf67b017c76fc1f83f7add0eacb658bc723763e3e1_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:748bda8560c46129d59afd0680c6ce7421d5bbe007cde1e750a8dc9c417cc88e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:776c81365d8979f2ca91127ff47d38362c7a1682643bb70d9f221a35b4c1f05c_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6deb824bf0fdd43b4c1d89e8b8601e05b1b09dd1b89922fbb6e3ca7ef7bdfea_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:35b685780d05bc62b306783208ceea2a99b78ec1e38099d25ab9e27fe64fc2e9_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:38b7e234acdefe69fa3c01d50447aecf4314443f72410df6b81d9b7d66d8281c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5cbf178c6594a373950ddf0e3c81452aa4163b6e4ebf30a735207a2523cf918a_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:93c75b2ad4a4b85855a1e63cf1e1ca7e0a7b615c771b857d9bfebb7651d18871_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:3605def86edd8ea7f97a2e46ead0764197dfb13a9b5fd00052d91e5eb7e9fafb_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e1fa556d3b407ce1489283a4111eafad610475cbb18d17e238cd20bdc24910dd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e4ac1d06fcc633033dbac0db2749c09678ef71c109c1efd75ad31ecda396f721_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:edb5c32f8172251350021de785fabeb9a00a0d8250758f7857f9ea675c74f540_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:2db7e64a9345be2d431e0ba15601ee9cc8d8dfc219a757a0f7a664d521e8adda_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:67bc0d4e819af067717ddcf765b4d565ba2f953c65633c122577fe192a6bea0b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:7c48b8be9465a9f1b14db62cb2a1b4f2799df16407f306e9ed085946ebbd8d30_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a4770ea3815a2528058f98f6952dbf58ff2d7ac12fd36f8119568c03eb5b0263_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:0100f495023b4ede4318d4cf15f68b9e33f0ba0b48331ce8cebf9250152f3211_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:222f4a27a841f4431f3fb204e1c7d3b55fa030495319514eecb26292c3beb0a0_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:db078402e0278f7dc1a0626bf3afe14c2c4221dd438708136de4a93bb0ee70c4_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fcdcc373e6c1ee28739e8883c4c6b447267987e34b9404ae693cf4331aeac76a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c4059a5b02bdd9d01fed234cde35e9c45e812cc4ee5be35f00ba806f0d84f3d9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f553364c160f85a326a63ef456658486e384c56ed0b1af539ebea2d2e503c81e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30af84e015601d39ad0b62c14cd5ad901ae6a4450ff247ab265b78eb8fac39a3_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:eeb09578f651f65f8f8216cac46869034bf17bff001a2ed73d96d11772532666_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:3dc64c49b4ebe48c00a1e75fdc94bbd8828adf9118e5af8d03d51a245f1112a6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:6e36fd9c87b45f4257f9853d69dc676dfd561c408ddbfbf1c247579a62c54350_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:adf0ed6be1fc6efe5c78191efc5094efd8663b0c3ec3815f7c824f9919045c5b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c604800d8da5342d1a2d3c8d684844d66c4df5d03b686b0666e109aab6dc984b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:8d5c598393328496de5fafd9117d9d4f9fa4fcfb8c5418ade4df1604de18207a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a91a92813ffb55ea55c55c27085ceceaef7734567cb916fb9bdbb18d59a10e12_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:d456e8be4a3a28609cd29dda8c9f6fa46130c8a3d421e23c97d762d089bbe5b6_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:ed64b71e99e3e436e96d00d475870df08877316e3f38df129dfb62d40ef4c45b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:50035776c45729ee560a831d79b3c8afc24a5691167e8c583eadea2474e23641_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:529836546956099d5d3b03861187b4bf92be0fcce6fbe95e5d229d6d5923c28c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:53f6f7a759a936966f39d97e1a7c0b10c86e02122557d710f14f0289f0b673a5_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f56649d00f40db610f0a6fae6827575adbf58b70368c0dad73c794a3c77a35df_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:0e8ab3244ad637aba8448bd161d3a06c85a68afe7ea08e25064c4ed16c7ef650_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:280c976f5b58de0920c9ec4e2284cab56077dc975a46146aeb53509c4b302b83_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:6b5e8518bc692c328963e632a4f0a910761ec536a8f4ed717a576c4bac3ce963_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:df7c038aab12b439d56efe938bc673a24018e023a8de1e1c7aa416e042c55561_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0d7ec956e636933e576c00924726bd24a267bf46a9510a9e50b7a3e79f70daca_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:467ed1130abf80b62f8e0537e9977658d22dbc3cf7cd40ca96e3a54d878feedb_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b2d5d8ec572abb2c30a98be0de1e11ca1a2adf0c6faa3347c6a0d2ef784afeac_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c915c06f28341ba8aa9a1c00fc49504a8816b0610b2cf5304f89fcedca8bc478_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:2a325b078b73e9bfd6e92f8154c4177aeb60dbdd59657227ca37ab1bd46827af_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:671a3dabbb5b5f6b2b4620ce823d6928b65506f2acffa0104a4c2d149a223211_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:7d65d75e025be1ea2f6d82d14f859786f448e619422b10f68cfd4f68ae786a21_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:999c307a79cabd8e9553f5d807d4125df1fef3153ecfce17cca871d5f8051eeb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:758f10fd65669acf6c81de7d53ffacf7de3b2e81498cd0f39990debd9110b69d_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:9d5b06a17a27074c71ca8c4005e1b6b04a4ca488eb2571279805cffc56656c03_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:dad9ed95f9fbba93ad7fe74761b007ca7b4da4c59a73abb1fda223e4c03a422d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fcfa3ae6a7face4161aba93179d149a20d144e8a2a8564650750b4d8f0013496_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:4bd8b3ac46a8db114f1910d03bab222e17e18db8544e8d54ae8a0b1d0e24fa1f_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:97832034bbb82111434b4fbfe1444407ada2a083429a7efba57d55b4d610537b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:a52f59971348bb0e5766a857c16818b379c404c3af300bc697ae1fc8e3f54f15_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:b65119938857e8150f90c3b6bbc4e92d9646b9bc6c39f467e0ba3e4662e28036_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:633d1d92e36d87a1f8adcc69c9b9810ef84ecda5b85dbfbd6eca2bd4e97a2ee7_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:6ef9d153bbf3c65f132cd7d29dbd58d01019615f03eb07967023e446bdced8c3_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:f70052e4ccac8f01affc7e0f1eaf9d14b4eb15544b0b5509fefb4e47a2a820ee_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:12d9ca6fa5893e68c553fd8909113ee1a29a96d3ff3bf32f3824791681de15d9_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:3af4fce899db69f0df6699cec4a3e4b26439c6a18de30232f1ff145f00d5d68a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d2fe0edcc847e8cb3727941b91149007f9c669b0bec5847a425e82212d095d79_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:0889d518d954d62033fefe6df255f5ba816dec01d415d13a5634132f05eeb344_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3115448f5481f6842c97e13aaef4b9a2925a54f6998b9f48000a74faa63bbfc9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3a07fa757f01f4899f9c27883f06f4f7ab567310f5ae6bd44e96eab22d6dd01b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:95c7e0528adda5ba04775f32106977c5e3d95383b6553d57c703fc3e74d50a18_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:04bb985f7378665fe9840691d2ab90465b726431a39518dd087d3689d6817a6a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a008fe2d2aba4b5f793d1d795f04174dfecc2633856129d3786a18b641a34f2d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c368220ebde4dcf75123e81eb9dc4e13544f64edaa79c28a21c93126e58239f6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d4b20eee8037ab15a8e786ef3db3b1fddfc936fc59f249d893227dd1659d1ef5_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3f29b35a62f679a89a6cf199988f89e736707012542d72aa1761c89eef1909fc_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6c1b9f3900fd21b51aab4429b50959da2eec8d1fa64c70e1cc8e5ebe72a24cbd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6d498d0d92f88fd51112e5b14233bd66880e081569a99000e508d5811d3afa56_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6e94ce6c4e49d6de3e1bdbc145712ac8d1a45cc841785b20cb7605c35bef5d35_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1273f2e53f3d42e861050972fb3612e33d8ec159e29fa08bd7dd0e6f896b17a6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c814b9a5380c33f9da6d646d956f2ba425d1eed63e718b44f574b1c2f3f0ea5a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f005f7a9a4bbe701274a5e59e7e0e3c3a72426b19560653575ac6caa0e28cdbf_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fc078ca1f72f833ac498c30a1de5a4c7500c83cd94a3008445373266bfe56acd_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2af9330004a06971944971326d1e8377cbbf4725f9d703db266abd7e5359d7ec_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:89971adb04a2e0a67571cf02489e6e383ae971000028d30305e584aa03784348_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:a3c950362ae071e71de468b7f619678386edfdfd0855d0df075f99d993132720_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:b35a1300569e0905cb750b7217145c94e246036cd498993ead14d07e645d1fb2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:1afcc680effd2ce9de75d5a8ca4b7a1940198d30e5c042094f6eba007f5d673a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:8da6cb3c6dacaf49d3eedbeb0f03324a14734f4c918ffb038f41d0ab2acadd68_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:9235d5f0629ffad8a5af4e8a50660751684ce91eae489122c2f89bb79ee833fc_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:ec49da4e5124996506d50392d8b7078d00c5862bea5e229e7351b5e0e6532c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7c1c1e7d2af533ee43c92204d4e87104f305cbde1af7c8531fa8f1299c16a3ff_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:b1d620feb486ef28423ee30cf03dedd26c30f589b12d87fff47a19cbcde4c3c4_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d13a4baf04347af18f6eaa4cbdcd5f847ebcd396efedeb89ecf1393cd1e378f7_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ecceb25263477c9c9aa06a38df00fc004dd471ee9cccfbdfbc280c29d62f275b_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:932692970cab5f163ce35ed82c9cbbb70c8a7b2224b82d4bab39c86aaef4609b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:9d157aa28bd24d12e49d76723cb91a19f9bc840a02d4850f94b9110530b76e7e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:b5c8be4282dce9ca844df81ff8696bdd5fd25bb58b51c2061d3a3643e3f8dc2a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6265c12a8b31624fe4257abad1889839e2e1612167dafa7274b8d614fdfee64e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:70857d797ad076f5f20217e39673aa6abb0647ecbaf95ab8252075f43a68c073_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ce8fe5503b8bcb1bb338f06dc100f0bed5f85340eda1b73adb58d92e7aaec22c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3b597f3bd5af1c355f4e7c0ed012ca06697cbc37b9bf9a23a5c5f4d0d8162321_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3fe5d5a4ba52d689ec4b106ed8899e5fd75759671a6192641e2e24873707db77_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:557cefcdfef854b4ef381acf2f7de1bd1cf3f29a54398616043c6abcbc8a81f0_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0bdf015e02c235268ce9fefafcb7b841266f434448ae5aaa9ad66e49ed36a39_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:22969e24366f0b43d2cf11c30157842f595bc54976ac096ede75fbdcc5d4985f_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3b487d6d2f8191f74b599cd30b8c982010c10409fd291eb1dc4c6c7b683f7cc0_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7da1135f319c0f3086b822465dfe0d5e1d1d7b547b92dbd42dee8286c8f5c68f_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:e3b0258cdf56b709000aad847e7995099da913bf27676c138a5f9b0ea585bcac_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a26f61e6063fca59ba6ab989888880ce959e81bb54b552ef7bd81a89d69b2b77_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c115cba6d9973e91e208f56a315676b56657e5cf7863d19c0a7103f13edb9b44_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ccb1f539fd2f75a062fc2ed4b0d7f27c360aef121f933975e9ef9235af453934_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:e7a8657e23e6dd922ea658aa52e8145254cd5753589e5ab3732a0d1d574e46f2_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:0ac2a7fd509e0f905d2807f93051fef189de6febdf428b8c14e2618e6b70fe7f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:18bc241751cb6151f5b879ca160aeea4f08290e3fa0922e2c01eded3a9c44919_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:ff30de805aae0da846920093dafb42ca2266b48d7b232ce774070fc1c0da5709_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:10efa408842bcf0b21fad1e720b1a05dc849b5965a891ac470cb8540f517a54a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:61967b9608d0920d92492b9fca096e3598f389329db9cf64c2eb6bd75b846777_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:77f97aa79f52695ab5dfc605b780692847051e9dd679789a0f355510ff6cfe51_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:041d72bac1ff9895f91c83b21a4f92499b948c13354fd074393bb7b9294d46c0_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:505e422599401fbf23ce7000b02929b67d389c9d437974c8fdf91a0ec76061ee_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:e6a4680ab3d78db90ff3cf6502c8e1987844f5c5d8a2c920d2aeb9c8607f8d5e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:82c20bceaf5cb9e4d3e98fa58c98a679c05d55482519ea3fa080aabeab34cdf7_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:ba573576b17d3230c3893819b2e570a0f5c2c9760935b2c882c57b2da99696f5_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:d83381f446c0dd432b817203f7e86897fd07a8e5bae54a537edb4712fa6fc264_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:1222990acec343a998b5085dd11a44583d86b7cc76d8f99b69d8a287116dd57b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:a80bc249c918d1cd92e3c46de8e87b388783ae93b9ac95839eb3b0c0efb8d8a7_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:cd6243cac5a039740a5b47baf91141ed3e70cb5675cec93c93434201d374a6f2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:78dd8bba83fef4a8fffaa7b65ecf9f9c50567eb051f3015c8bdefbaa8334de5c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:b4a51cacc8a06fb6588ea140e3b50ff0166554e8d7b38c77a13be4bab9885356_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:fd24147630533238a126ea21fbba484239135a15023c524137fc8ea25a7065ca_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:88f1d696cd44e19a0852b3d51ba224129b920c5d1859870dc36de53e3cb95c84_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:8acaa460c5ae992714e25d957948477118dfa2eb6adfd0d84a457b9bfdba54d2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b23ea9fa8eaa75fb8e0acfa6f45ff360a8784627cc3fad5d608a80181f193c3f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b70ef1d999b9f5308ecc361d6e4b74c8da65658d1d6802c731b6aa3a24725dc0_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:402f0bc32520a6391d25b5fd70e323df8f810aaa32d6f4a4ec190c32f851a153_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:5d95ebdf8eba75315f3e296f24533697ca66e3b828b886e12f0957d197ee388a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:637f6b5eb27d7a38e108b070130b6a52c0f44923d584ca65534cd88623d86f40_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6c87ec100726f3a8c65475666e604062f391ce3a8d9f516eae64ef7d51247fba_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:61059dc3377fbd1c6d7426712242943cec1ae8a76752709afd421a618e143b47_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:baa34b4e2cccff9bc62d82eb6552639010785d44cb019acc69866cf2aaaa3806_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:fe4370f51955f5a8b5588b7e590a9521cb792066f6259ea0b2b032ac957be413_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:753de30d0d2a7db211426c9ede26bda02b91709680ca5acd2334c921e08fc088_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8d3a4e42a1ab884c9bbc9933b66db18c60e75a344a2d0570b10923c95d70fdb8_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9a3c8ef3d81076660d34fdeb0f7b2d7ec088383fb8666f843eff5c6efdb9016b_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-35469",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-13T03:52:35+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:8451c790ba30fb6395d8074c37c150d88d2adad11920e9b999332ffdb929a328_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:cdf612d1d3001b7e2eab47bee66395dc626a6a41421a9fff247ac7f1e530c281_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:d6584c4860edb91594eda55fcb27a576c6e74313b10569079d5454553dc1b64e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:e970ac1c75d936d92009f8fbc6754079704ea6d7731f2065c345c3a1e4412cdb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3965aaeeb958ccea911ff08d45da2c16ef953f6a473eb69b790fa1afa7c0b76d_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a7e30f2b77bb97ed583ee189ed72dfe9ad2a3928c67eb6d5aade5f1467f5d332_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b3925f84e0f1311b6a2461b89da2d45c79d93fb87c927e8211581a320ca9f9d4_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dfa66f12770ded49cbc84646d0c22440a157fcc71704d9162e1336a26331d9fc_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4601d8011ff56e11bb8821db387d98354312a371bd8670cf915bfa9dd3de99be_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59850338d772efb690f2016093b01feeb4dd3c73805d77c26172ef7f293f1a55_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7fe48ad9f89f61203bd0ee397ccf7c5d9d37ec30b05ba837dc1089fe6ee67068_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9cbca78a3a21d65303eba79b841fbe67f53b0a65fc82879534266075deef35d4_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:5b648181cb5f1db70ab87fbf67b017c76fc1f83f7add0eacb658bc723763e3e1_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:748bda8560c46129d59afd0680c6ce7421d5bbe007cde1e750a8dc9c417cc88e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:776c81365d8979f2ca91127ff47d38362c7a1682643bb70d9f221a35b4c1f05c_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6deb824bf0fdd43b4c1d89e8b8601e05b1b09dd1b89922fbb6e3ca7ef7bdfea_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:35b685780d05bc62b306783208ceea2a99b78ec1e38099d25ab9e27fe64fc2e9_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:38b7e234acdefe69fa3c01d50447aecf4314443f72410df6b81d9b7d66d8281c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5cbf178c6594a373950ddf0e3c81452aa4163b6e4ebf30a735207a2523cf918a_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:93c75b2ad4a4b85855a1e63cf1e1ca7e0a7b615c771b857d9bfebb7651d18871_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:3605def86edd8ea7f97a2e46ead0764197dfb13a9b5fd00052d91e5eb7e9fafb_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e1fa556d3b407ce1489283a4111eafad610475cbb18d17e238cd20bdc24910dd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e4ac1d06fcc633033dbac0db2749c09678ef71c109c1efd75ad31ecda396f721_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:edb5c32f8172251350021de785fabeb9a00a0d8250758f7857f9ea675c74f540_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:2db7e64a9345be2d431e0ba15601ee9cc8d8dfc219a757a0f7a664d521e8adda_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:67bc0d4e819af067717ddcf765b4d565ba2f953c65633c122577fe192a6bea0b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:7c48b8be9465a9f1b14db62cb2a1b4f2799df16407f306e9ed085946ebbd8d30_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a4770ea3815a2528058f98f6952dbf58ff2d7ac12fd36f8119568c03eb5b0263_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:0100f495023b4ede4318d4cf15f68b9e33f0ba0b48331ce8cebf9250152f3211_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:222f4a27a841f4431f3fb204e1c7d3b55fa030495319514eecb26292c3beb0a0_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:db078402e0278f7dc1a0626bf3afe14c2c4221dd438708136de4a93bb0ee70c4_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fcdcc373e6c1ee28739e8883c4c6b447267987e34b9404ae693cf4331aeac76a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c4059a5b02bdd9d01fed234cde35e9c45e812cc4ee5be35f00ba806f0d84f3d9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f553364c160f85a326a63ef456658486e384c56ed0b1af539ebea2d2e503c81e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30af84e015601d39ad0b62c14cd5ad901ae6a4450ff247ab265b78eb8fac39a3_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:eeb09578f651f65f8f8216cac46869034bf17bff001a2ed73d96d11772532666_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:3dc64c49b4ebe48c00a1e75fdc94bbd8828adf9118e5af8d03d51a245f1112a6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:6e36fd9c87b45f4257f9853d69dc676dfd561c408ddbfbf1c247579a62c54350_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:adf0ed6be1fc6efe5c78191efc5094efd8663b0c3ec3815f7c824f9919045c5b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c604800d8da5342d1a2d3c8d684844d66c4df5d03b686b0666e109aab6dc984b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:8d5c598393328496de5fafd9117d9d4f9fa4fcfb8c5418ade4df1604de18207a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a91a92813ffb55ea55c55c27085ceceaef7734567cb916fb9bdbb18d59a10e12_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:d456e8be4a3a28609cd29dda8c9f6fa46130c8a3d421e23c97d762d089bbe5b6_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:ed64b71e99e3e436e96d00d475870df08877316e3f38df129dfb62d40ef4c45b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:50035776c45729ee560a831d79b3c8afc24a5691167e8c583eadea2474e23641_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:529836546956099d5d3b03861187b4bf92be0fcce6fbe95e5d229d6d5923c28c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:53f6f7a759a936966f39d97e1a7c0b10c86e02122557d710f14f0289f0b673a5_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f56649d00f40db610f0a6fae6827575adbf58b70368c0dad73c794a3c77a35df_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:0e8ab3244ad637aba8448bd161d3a06c85a68afe7ea08e25064c4ed16c7ef650_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:280c976f5b58de0920c9ec4e2284cab56077dc975a46146aeb53509c4b302b83_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:6b5e8518bc692c328963e632a4f0a910761ec536a8f4ed717a576c4bac3ce963_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:df7c038aab12b439d56efe938bc673a24018e023a8de1e1c7aa416e042c55561_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0d7ec956e636933e576c00924726bd24a267bf46a9510a9e50b7a3e79f70daca_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:467ed1130abf80b62f8e0537e9977658d22dbc3cf7cd40ca96e3a54d878feedb_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b2d5d8ec572abb2c30a98be0de1e11ca1a2adf0c6faa3347c6a0d2ef784afeac_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c915c06f28341ba8aa9a1c00fc49504a8816b0610b2cf5304f89fcedca8bc478_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:2a325b078b73e9bfd6e92f8154c4177aeb60dbdd59657227ca37ab1bd46827af_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:671a3dabbb5b5f6b2b4620ce823d6928b65506f2acffa0104a4c2d149a223211_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:7d65d75e025be1ea2f6d82d14f859786f448e619422b10f68cfd4f68ae786a21_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:999c307a79cabd8e9553f5d807d4125df1fef3153ecfce17cca871d5f8051eeb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:758f10fd65669acf6c81de7d53ffacf7de3b2e81498cd0f39990debd9110b69d_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:9d5b06a17a27074c71ca8c4005e1b6b04a4ca488eb2571279805cffc56656c03_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:dad9ed95f9fbba93ad7fe74761b007ca7b4da4c59a73abb1fda223e4c03a422d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fcfa3ae6a7face4161aba93179d149a20d144e8a2a8564650750b4d8f0013496_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:4bd8b3ac46a8db114f1910d03bab222e17e18db8544e8d54ae8a0b1d0e24fa1f_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:97832034bbb82111434b4fbfe1444407ada2a083429a7efba57d55b4d610537b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:a52f59971348bb0e5766a857c16818b379c404c3af300bc697ae1fc8e3f54f15_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:b65119938857e8150f90c3b6bbc4e92d9646b9bc6c39f467e0ba3e4662e28036_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:633d1d92e36d87a1f8adcc69c9b9810ef84ecda5b85dbfbd6eca2bd4e97a2ee7_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:6ef9d153bbf3c65f132cd7d29dbd58d01019615f03eb07967023e446bdced8c3_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:f70052e4ccac8f01affc7e0f1eaf9d14b4eb15544b0b5509fefb4e47a2a820ee_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:12d9ca6fa5893e68c553fd8909113ee1a29a96d3ff3bf32f3824791681de15d9_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:3af4fce899db69f0df6699cec4a3e4b26439c6a18de30232f1ff145f00d5d68a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d2fe0edcc847e8cb3727941b91149007f9c669b0bec5847a425e82212d095d79_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:0889d518d954d62033fefe6df255f5ba816dec01d415d13a5634132f05eeb344_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3115448f5481f6842c97e13aaef4b9a2925a54f6998b9f48000a74faa63bbfc9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3a07fa757f01f4899f9c27883f06f4f7ab567310f5ae6bd44e96eab22d6dd01b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:95c7e0528adda5ba04775f32106977c5e3d95383b6553d57c703fc3e74d50a18_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:04bb985f7378665fe9840691d2ab90465b726431a39518dd087d3689d6817a6a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a008fe2d2aba4b5f793d1d795f04174dfecc2633856129d3786a18b641a34f2d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c368220ebde4dcf75123e81eb9dc4e13544f64edaa79c28a21c93126e58239f6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d4b20eee8037ab15a8e786ef3db3b1fddfc936fc59f249d893227dd1659d1ef5_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3f29b35a62f679a89a6cf199988f89e736707012542d72aa1761c89eef1909fc_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6c1b9f3900fd21b51aab4429b50959da2eec8d1fa64c70e1cc8e5ebe72a24cbd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6d498d0d92f88fd51112e5b14233bd66880e081569a99000e508d5811d3afa56_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6e94ce6c4e49d6de3e1bdbc145712ac8d1a45cc841785b20cb7605c35bef5d35_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1273f2e53f3d42e861050972fb3612e33d8ec159e29fa08bd7dd0e6f896b17a6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c814b9a5380c33f9da6d646d956f2ba425d1eed63e718b44f574b1c2f3f0ea5a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f005f7a9a4bbe701274a5e59e7e0e3c3a72426b19560653575ac6caa0e28cdbf_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fc078ca1f72f833ac498c30a1de5a4c7500c83cd94a3008445373266bfe56acd_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2af9330004a06971944971326d1e8377cbbf4725f9d703db266abd7e5359d7ec_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:89971adb04a2e0a67571cf02489e6e383ae971000028d30305e584aa03784348_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:a3c950362ae071e71de468b7f619678386edfdfd0855d0df075f99d993132720_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:b35a1300569e0905cb750b7217145c94e246036cd498993ead14d07e645d1fb2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7c1c1e7d2af533ee43c92204d4e87104f305cbde1af7c8531fa8f1299c16a3ff_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:b1d620feb486ef28423ee30cf03dedd26c30f589b12d87fff47a19cbcde4c3c4_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d13a4baf04347af18f6eaa4cbdcd5f847ebcd396efedeb89ecf1393cd1e378f7_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ecceb25263477c9c9aa06a38df00fc004dd471ee9cccfbdfbc280c29d62f275b_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:932692970cab5f163ce35ed82c9cbbb70c8a7b2224b82d4bab39c86aaef4609b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:9d157aa28bd24d12e49d76723cb91a19f9bc840a02d4850f94b9110530b76e7e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:b5c8be4282dce9ca844df81ff8696bdd5fd25bb58b51c2061d3a3643e3f8dc2a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6265c12a8b31624fe4257abad1889839e2e1612167dafa7274b8d614fdfee64e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:70857d797ad076f5f20217e39673aa6abb0647ecbaf95ab8252075f43a68c073_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ce8fe5503b8bcb1bb338f06dc100f0bed5f85340eda1b73adb58d92e7aaec22c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3b597f3bd5af1c355f4e7c0ed012ca06697cbc37b9bf9a23a5c5f4d0d8162321_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3fe5d5a4ba52d689ec4b106ed8899e5fd75759671a6192641e2e24873707db77_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:557cefcdfef854b4ef381acf2f7de1bd1cf3f29a54398616043c6abcbc8a81f0_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0bdf015e02c235268ce9fefafcb7b841266f434448ae5aaa9ad66e49ed36a39_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:22969e24366f0b43d2cf11c30157842f595bc54976ac096ede75fbdcc5d4985f_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3b487d6d2f8191f74b599cd30b8c982010c10409fd291eb1dc4c6c7b683f7cc0_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7da1135f319c0f3086b822465dfe0d5e1d1d7b547b92dbd42dee8286c8f5c68f_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:e3b0258cdf56b709000aad847e7995099da913bf27676c138a5f9b0ea585bcac_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a26f61e6063fca59ba6ab989888880ce959e81bb54b552ef7bd81a89d69b2b77_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c115cba6d9973e91e208f56a315676b56657e5cf7863d19c0a7103f13edb9b44_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ccb1f539fd2f75a062fc2ed4b0d7f27c360aef121f933975e9ef9235af453934_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:e7a8657e23e6dd922ea658aa52e8145254cd5753589e5ab3732a0d1d574e46f2_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:0ac2a7fd509e0f905d2807f93051fef189de6febdf428b8c14e2618e6b70fe7f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:18bc241751cb6151f5b879ca160aeea4f08290e3fa0922e2c01eded3a9c44919_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:ff30de805aae0da846920093dafb42ca2266b48d7b232ce774070fc1c0da5709_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:10efa408842bcf0b21fad1e720b1a05dc849b5965a891ac470cb8540f517a54a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:61967b9608d0920d92492b9fca096e3598f389329db9cf64c2eb6bd75b846777_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:77f97aa79f52695ab5dfc605b780692847051e9dd679789a0f355510ff6cfe51_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:82c20bceaf5cb9e4d3e98fa58c98a679c05d55482519ea3fa080aabeab34cdf7_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:ba573576b17d3230c3893819b2e570a0f5c2c9760935b2c882c57b2da99696f5_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:d83381f446c0dd432b817203f7e86897fd07a8e5bae54a537edb4712fa6fc264_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:88f1d696cd44e19a0852b3d51ba224129b920c5d1859870dc36de53e3cb95c84_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:8acaa460c5ae992714e25d957948477118dfa2eb6adfd0d84a457b9bfdba54d2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b23ea9fa8eaa75fb8e0acfa6f45ff360a8784627cc3fad5d608a80181f193c3f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b70ef1d999b9f5308ecc361d6e4b74c8da65658d1d6802c731b6aa3a24725dc0_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:402f0bc32520a6391d25b5fd70e323df8f810aaa32d6f4a4ec190c32f851a153_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:5d95ebdf8eba75315f3e296f24533697ca66e3b828b886e12f0957d197ee388a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:637f6b5eb27d7a38e108b070130b6a52c0f44923d584ca65534cd88623d86f40_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6c87ec100726f3a8c65475666e604062f391ce3a8d9f516eae64ef7d51247fba_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:61059dc3377fbd1c6d7426712242943cec1ae8a76752709afd421a618e143b47_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:baa34b4e2cccff9bc62d82eb6552639010785d44cb019acc69866cf2aaaa3806_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:fe4370f51955f5a8b5588b7e590a9521cb792066f6259ea0b2b032ac957be413_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:753de30d0d2a7db211426c9ede26bda02b91709680ca5acd2334c921e08fc088_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8d3a4e42a1ab884c9bbc9933b66db18c60e75a344a2d0570b10923c95d70fdb8_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9a3c8ef3d81076660d34fdeb0f7b2d7ec088383fb8666f843eff5c6efdb9016b_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457729"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service flaw affecting OpenShift Container Platform. An attacker with specific elevated cluster roles, such as those permitting pod port forwarding, execution, attachment, or node proxying, could exploit a vulnerability in the SPDY streaming code of Kubelet, CRI-O, and kube-apiserver, leading to unresponsiveness of these critical components.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:1afcc680effd2ce9de75d5a8ca4b7a1940198d30e5c042094f6eba007f5d673a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:8da6cb3c6dacaf49d3eedbeb0f03324a14734f4c918ffb038f41d0ab2acadd68_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:9235d5f0629ffad8a5af4e8a50660751684ce91eae489122c2f89bb79ee833fc_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:ec49da4e5124996506d50392d8b7078d00c5862bea5e229e7351b5e0e6532c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:041d72bac1ff9895f91c83b21a4f92499b948c13354fd074393bb7b9294d46c0_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:505e422599401fbf23ce7000b02929b67d389c9d437974c8fdf91a0ec76061ee_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:e6a4680ab3d78db90ff3cf6502c8e1987844f5c5d8a2c920d2aeb9c8607f8d5e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:1222990acec343a998b5085dd11a44583d86b7cc76d8f99b69d8a287116dd57b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:a80bc249c918d1cd92e3c46de8e87b388783ae93b9ac95839eb3b0c0efb8d8a7_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:cd6243cac5a039740a5b47baf91141ed3e70cb5675cec93c93434201d374a6f2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:78dd8bba83fef4a8fffaa7b65ecf9f9c50567eb051f3015c8bdefbaa8334de5c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:b4a51cacc8a06fb6588ea140e3b50ff0166554e8d7b38c77a13be4bab9885356_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:fd24147630533238a126ea21fbba484239135a15023c524137fc8ea25a7065ca_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:8451c790ba30fb6395d8074c37c150d88d2adad11920e9b999332ffdb929a328_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:cdf612d1d3001b7e2eab47bee66395dc626a6a41421a9fff247ac7f1e530c281_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:d6584c4860edb91594eda55fcb27a576c6e74313b10569079d5454553dc1b64e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:e970ac1c75d936d92009f8fbc6754079704ea6d7731f2065c345c3a1e4412cdb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3965aaeeb958ccea911ff08d45da2c16ef953f6a473eb69b790fa1afa7c0b76d_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a7e30f2b77bb97ed583ee189ed72dfe9ad2a3928c67eb6d5aade5f1467f5d332_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b3925f84e0f1311b6a2461b89da2d45c79d93fb87c927e8211581a320ca9f9d4_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dfa66f12770ded49cbc84646d0c22440a157fcc71704d9162e1336a26331d9fc_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4601d8011ff56e11bb8821db387d98354312a371bd8670cf915bfa9dd3de99be_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59850338d772efb690f2016093b01feeb4dd3c73805d77c26172ef7f293f1a55_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7fe48ad9f89f61203bd0ee397ccf7c5d9d37ec30b05ba837dc1089fe6ee67068_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9cbca78a3a21d65303eba79b841fbe67f53b0a65fc82879534266075deef35d4_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:5b648181cb5f1db70ab87fbf67b017c76fc1f83f7add0eacb658bc723763e3e1_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:748bda8560c46129d59afd0680c6ce7421d5bbe007cde1e750a8dc9c417cc88e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:776c81365d8979f2ca91127ff47d38362c7a1682643bb70d9f221a35b4c1f05c_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6deb824bf0fdd43b4c1d89e8b8601e05b1b09dd1b89922fbb6e3ca7ef7bdfea_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:35b685780d05bc62b306783208ceea2a99b78ec1e38099d25ab9e27fe64fc2e9_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:38b7e234acdefe69fa3c01d50447aecf4314443f72410df6b81d9b7d66d8281c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5cbf178c6594a373950ddf0e3c81452aa4163b6e4ebf30a735207a2523cf918a_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:93c75b2ad4a4b85855a1e63cf1e1ca7e0a7b615c771b857d9bfebb7651d18871_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:3605def86edd8ea7f97a2e46ead0764197dfb13a9b5fd00052d91e5eb7e9fafb_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e1fa556d3b407ce1489283a4111eafad610475cbb18d17e238cd20bdc24910dd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e4ac1d06fcc633033dbac0db2749c09678ef71c109c1efd75ad31ecda396f721_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:edb5c32f8172251350021de785fabeb9a00a0d8250758f7857f9ea675c74f540_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:2db7e64a9345be2d431e0ba15601ee9cc8d8dfc219a757a0f7a664d521e8adda_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:67bc0d4e819af067717ddcf765b4d565ba2f953c65633c122577fe192a6bea0b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:7c48b8be9465a9f1b14db62cb2a1b4f2799df16407f306e9ed085946ebbd8d30_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a4770ea3815a2528058f98f6952dbf58ff2d7ac12fd36f8119568c03eb5b0263_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:0100f495023b4ede4318d4cf15f68b9e33f0ba0b48331ce8cebf9250152f3211_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:222f4a27a841f4431f3fb204e1c7d3b55fa030495319514eecb26292c3beb0a0_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:db078402e0278f7dc1a0626bf3afe14c2c4221dd438708136de4a93bb0ee70c4_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fcdcc373e6c1ee28739e8883c4c6b447267987e34b9404ae693cf4331aeac76a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c4059a5b02bdd9d01fed234cde35e9c45e812cc4ee5be35f00ba806f0d84f3d9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f553364c160f85a326a63ef456658486e384c56ed0b1af539ebea2d2e503c81e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30af84e015601d39ad0b62c14cd5ad901ae6a4450ff247ab265b78eb8fac39a3_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:eeb09578f651f65f8f8216cac46869034bf17bff001a2ed73d96d11772532666_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:3dc64c49b4ebe48c00a1e75fdc94bbd8828adf9118e5af8d03d51a245f1112a6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:6e36fd9c87b45f4257f9853d69dc676dfd561c408ddbfbf1c247579a62c54350_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:adf0ed6be1fc6efe5c78191efc5094efd8663b0c3ec3815f7c824f9919045c5b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c604800d8da5342d1a2d3c8d684844d66c4df5d03b686b0666e109aab6dc984b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:8d5c598393328496de5fafd9117d9d4f9fa4fcfb8c5418ade4df1604de18207a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a91a92813ffb55ea55c55c27085ceceaef7734567cb916fb9bdbb18d59a10e12_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:d456e8be4a3a28609cd29dda8c9f6fa46130c8a3d421e23c97d762d089bbe5b6_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:ed64b71e99e3e436e96d00d475870df08877316e3f38df129dfb62d40ef4c45b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:50035776c45729ee560a831d79b3c8afc24a5691167e8c583eadea2474e23641_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:529836546956099d5d3b03861187b4bf92be0fcce6fbe95e5d229d6d5923c28c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:53f6f7a759a936966f39d97e1a7c0b10c86e02122557d710f14f0289f0b673a5_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f56649d00f40db610f0a6fae6827575adbf58b70368c0dad73c794a3c77a35df_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:0e8ab3244ad637aba8448bd161d3a06c85a68afe7ea08e25064c4ed16c7ef650_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:280c976f5b58de0920c9ec4e2284cab56077dc975a46146aeb53509c4b302b83_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:6b5e8518bc692c328963e632a4f0a910761ec536a8f4ed717a576c4bac3ce963_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:df7c038aab12b439d56efe938bc673a24018e023a8de1e1c7aa416e042c55561_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0d7ec956e636933e576c00924726bd24a267bf46a9510a9e50b7a3e79f70daca_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:467ed1130abf80b62f8e0537e9977658d22dbc3cf7cd40ca96e3a54d878feedb_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b2d5d8ec572abb2c30a98be0de1e11ca1a2adf0c6faa3347c6a0d2ef784afeac_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c915c06f28341ba8aa9a1c00fc49504a8816b0610b2cf5304f89fcedca8bc478_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:2a325b078b73e9bfd6e92f8154c4177aeb60dbdd59657227ca37ab1bd46827af_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:671a3dabbb5b5f6b2b4620ce823d6928b65506f2acffa0104a4c2d149a223211_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:7d65d75e025be1ea2f6d82d14f859786f448e619422b10f68cfd4f68ae786a21_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:999c307a79cabd8e9553f5d807d4125df1fef3153ecfce17cca871d5f8051eeb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:758f10fd65669acf6c81de7d53ffacf7de3b2e81498cd0f39990debd9110b69d_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:9d5b06a17a27074c71ca8c4005e1b6b04a4ca488eb2571279805cffc56656c03_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:dad9ed95f9fbba93ad7fe74761b007ca7b4da4c59a73abb1fda223e4c03a422d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fcfa3ae6a7face4161aba93179d149a20d144e8a2a8564650750b4d8f0013496_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:4bd8b3ac46a8db114f1910d03bab222e17e18db8544e8d54ae8a0b1d0e24fa1f_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:97832034bbb82111434b4fbfe1444407ada2a083429a7efba57d55b4d610537b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:a52f59971348bb0e5766a857c16818b379c404c3af300bc697ae1fc8e3f54f15_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:b65119938857e8150f90c3b6bbc4e92d9646b9bc6c39f467e0ba3e4662e28036_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:633d1d92e36d87a1f8adcc69c9b9810ef84ecda5b85dbfbd6eca2bd4e97a2ee7_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:6ef9d153bbf3c65f132cd7d29dbd58d01019615f03eb07967023e446bdced8c3_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:f70052e4ccac8f01affc7e0f1eaf9d14b4eb15544b0b5509fefb4e47a2a820ee_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:12d9ca6fa5893e68c553fd8909113ee1a29a96d3ff3bf32f3824791681de15d9_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:3af4fce899db69f0df6699cec4a3e4b26439c6a18de30232f1ff145f00d5d68a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d2fe0edcc847e8cb3727941b91149007f9c669b0bec5847a425e82212d095d79_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:0889d518d954d62033fefe6df255f5ba816dec01d415d13a5634132f05eeb344_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3115448f5481f6842c97e13aaef4b9a2925a54f6998b9f48000a74faa63bbfc9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3a07fa757f01f4899f9c27883f06f4f7ab567310f5ae6bd44e96eab22d6dd01b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:95c7e0528adda5ba04775f32106977c5e3d95383b6553d57c703fc3e74d50a18_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:04bb985f7378665fe9840691d2ab90465b726431a39518dd087d3689d6817a6a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a008fe2d2aba4b5f793d1d795f04174dfecc2633856129d3786a18b641a34f2d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c368220ebde4dcf75123e81eb9dc4e13544f64edaa79c28a21c93126e58239f6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d4b20eee8037ab15a8e786ef3db3b1fddfc936fc59f249d893227dd1659d1ef5_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3f29b35a62f679a89a6cf199988f89e736707012542d72aa1761c89eef1909fc_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6c1b9f3900fd21b51aab4429b50959da2eec8d1fa64c70e1cc8e5ebe72a24cbd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6d498d0d92f88fd51112e5b14233bd66880e081569a99000e508d5811d3afa56_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6e94ce6c4e49d6de3e1bdbc145712ac8d1a45cc841785b20cb7605c35bef5d35_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1273f2e53f3d42e861050972fb3612e33d8ec159e29fa08bd7dd0e6f896b17a6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c814b9a5380c33f9da6d646d956f2ba425d1eed63e718b44f574b1c2f3f0ea5a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f005f7a9a4bbe701274a5e59e7e0e3c3a72426b19560653575ac6caa0e28cdbf_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fc078ca1f72f833ac498c30a1de5a4c7500c83cd94a3008445373266bfe56acd_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2af9330004a06971944971326d1e8377cbbf4725f9d703db266abd7e5359d7ec_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:89971adb04a2e0a67571cf02489e6e383ae971000028d30305e584aa03784348_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:a3c950362ae071e71de468b7f619678386edfdfd0855d0df075f99d993132720_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:b35a1300569e0905cb750b7217145c94e246036cd498993ead14d07e645d1fb2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7c1c1e7d2af533ee43c92204d4e87104f305cbde1af7c8531fa8f1299c16a3ff_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:b1d620feb486ef28423ee30cf03dedd26c30f589b12d87fff47a19cbcde4c3c4_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d13a4baf04347af18f6eaa4cbdcd5f847ebcd396efedeb89ecf1393cd1e378f7_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ecceb25263477c9c9aa06a38df00fc004dd471ee9cccfbdfbc280c29d62f275b_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:932692970cab5f163ce35ed82c9cbbb70c8a7b2224b82d4bab39c86aaef4609b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:9d157aa28bd24d12e49d76723cb91a19f9bc840a02d4850f94b9110530b76e7e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:b5c8be4282dce9ca844df81ff8696bdd5fd25bb58b51c2061d3a3643e3f8dc2a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6265c12a8b31624fe4257abad1889839e2e1612167dafa7274b8d614fdfee64e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:70857d797ad076f5f20217e39673aa6abb0647ecbaf95ab8252075f43a68c073_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ce8fe5503b8bcb1bb338f06dc100f0bed5f85340eda1b73adb58d92e7aaec22c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3b597f3bd5af1c355f4e7c0ed012ca06697cbc37b9bf9a23a5c5f4d0d8162321_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3fe5d5a4ba52d689ec4b106ed8899e5fd75759671a6192641e2e24873707db77_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:557cefcdfef854b4ef381acf2f7de1bd1cf3f29a54398616043c6abcbc8a81f0_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0bdf015e02c235268ce9fefafcb7b841266f434448ae5aaa9ad66e49ed36a39_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:22969e24366f0b43d2cf11c30157842f595bc54976ac096ede75fbdcc5d4985f_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3b487d6d2f8191f74b599cd30b8c982010c10409fd291eb1dc4c6c7b683f7cc0_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7da1135f319c0f3086b822465dfe0d5e1d1d7b547b92dbd42dee8286c8f5c68f_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:e3b0258cdf56b709000aad847e7995099da913bf27676c138a5f9b0ea585bcac_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a26f61e6063fca59ba6ab989888880ce959e81bb54b552ef7bd81a89d69b2b77_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c115cba6d9973e91e208f56a315676b56657e5cf7863d19c0a7103f13edb9b44_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ccb1f539fd2f75a062fc2ed4b0d7f27c360aef121f933975e9ef9235af453934_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:e7a8657e23e6dd922ea658aa52e8145254cd5753589e5ab3732a0d1d574e46f2_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:0ac2a7fd509e0f905d2807f93051fef189de6febdf428b8c14e2618e6b70fe7f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:18bc241751cb6151f5b879ca160aeea4f08290e3fa0922e2c01eded3a9c44919_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:ff30de805aae0da846920093dafb42ca2266b48d7b232ce774070fc1c0da5709_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:10efa408842bcf0b21fad1e720b1a05dc849b5965a891ac470cb8540f517a54a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:61967b9608d0920d92492b9fca096e3598f389329db9cf64c2eb6bd75b846777_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:77f97aa79f52695ab5dfc605b780692847051e9dd679789a0f355510ff6cfe51_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:82c20bceaf5cb9e4d3e98fa58c98a679c05d55482519ea3fa080aabeab34cdf7_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:ba573576b17d3230c3893819b2e570a0f5c2c9760935b2c882c57b2da99696f5_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:d83381f446c0dd432b817203f7e86897fd07a8e5bae54a537edb4712fa6fc264_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:88f1d696cd44e19a0852b3d51ba224129b920c5d1859870dc36de53e3cb95c84_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:8acaa460c5ae992714e25d957948477118dfa2eb6adfd0d84a457b9bfdba54d2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b23ea9fa8eaa75fb8e0acfa6f45ff360a8784627cc3fad5d608a80181f193c3f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b70ef1d999b9f5308ecc361d6e4b74c8da65658d1d6802c731b6aa3a24725dc0_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:402f0bc32520a6391d25b5fd70e323df8f810aaa32d6f4a4ec190c32f851a153_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:5d95ebdf8eba75315f3e296f24533697ca66e3b828b886e12f0957d197ee388a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:637f6b5eb27d7a38e108b070130b6a52c0f44923d584ca65534cd88623d86f40_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6c87ec100726f3a8c65475666e604062f391ce3a8d9f516eae64ef7d51247fba_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:61059dc3377fbd1c6d7426712242943cec1ae8a76752709afd421a618e143b47_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:baa34b4e2cccff9bc62d82eb6552639010785d44cb019acc69866cf2aaaa3806_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:fe4370f51955f5a8b5588b7e590a9521cb792066f6259ea0b2b032ac957be413_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:753de30d0d2a7db211426c9ede26bda02b91709680ca5acd2334c921e08fc088_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8d3a4e42a1ab884c9bbc9933b66db18c60e75a344a2d0570b10923c95d70fdb8_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9a3c8ef3d81076660d34fdeb0f7b2d7ec088383fb8666f843eff5c6efdb9016b_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "RHBZ#2457729",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457729"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35469",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35469"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469"
}
],
"release_date": "2026-04-13T23:59:59+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T07:57:34+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:1afcc680effd2ce9de75d5a8ca4b7a1940198d30e5c042094f6eba007f5d673a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:8da6cb3c6dacaf49d3eedbeb0f03324a14734f4c918ffb038f41d0ab2acadd68_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:9235d5f0629ffad8a5af4e8a50660751684ce91eae489122c2f89bb79ee833fc_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:ec49da4e5124996506d50392d8b7078d00c5862bea5e229e7351b5e0e6532c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:041d72bac1ff9895f91c83b21a4f92499b948c13354fd074393bb7b9294d46c0_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:505e422599401fbf23ce7000b02929b67d389c9d437974c8fdf91a0ec76061ee_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:e6a4680ab3d78db90ff3cf6502c8e1987844f5c5d8a2c920d2aeb9c8607f8d5e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:1222990acec343a998b5085dd11a44583d86b7cc76d8f99b69d8a287116dd57b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:a80bc249c918d1cd92e3c46de8e87b388783ae93b9ac95839eb3b0c0efb8d8a7_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:cd6243cac5a039740a5b47baf91141ed3e70cb5675cec93c93434201d374a6f2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:78dd8bba83fef4a8fffaa7b65ecf9f9c50567eb051f3015c8bdefbaa8334de5c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:b4a51cacc8a06fb6588ea140e3b50ff0166554e8d7b38c77a13be4bab9885356_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:fd24147630533238a126ea21fbba484239135a15023c524137fc8ea25a7065ca_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25009"
},
{
"category": "workaround",
"details": "To mitigate this issue, review and restrict the assignment of Kubernetes cluster roles `pods/portforward (create)`, `pods/exec (create)`, `pods/attach (create)`, and `nodes/proxy (get/create)` to untrusted users or service accounts. Ensure that only authorized and necessary entities possess these permissions. Modifying RBAC policies can impact the functionality of applications and services that rely on these permissions; careful testing is recommended.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:8451c790ba30fb6395d8074c37c150d88d2adad11920e9b999332ffdb929a328_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:cdf612d1d3001b7e2eab47bee66395dc626a6a41421a9fff247ac7f1e530c281_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:d6584c4860edb91594eda55fcb27a576c6e74313b10569079d5454553dc1b64e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:e970ac1c75d936d92009f8fbc6754079704ea6d7731f2065c345c3a1e4412cdb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3965aaeeb958ccea911ff08d45da2c16ef953f6a473eb69b790fa1afa7c0b76d_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a7e30f2b77bb97ed583ee189ed72dfe9ad2a3928c67eb6d5aade5f1467f5d332_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b3925f84e0f1311b6a2461b89da2d45c79d93fb87c927e8211581a320ca9f9d4_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dfa66f12770ded49cbc84646d0c22440a157fcc71704d9162e1336a26331d9fc_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4601d8011ff56e11bb8821db387d98354312a371bd8670cf915bfa9dd3de99be_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59850338d772efb690f2016093b01feeb4dd3c73805d77c26172ef7f293f1a55_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7fe48ad9f89f61203bd0ee397ccf7c5d9d37ec30b05ba837dc1089fe6ee67068_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9cbca78a3a21d65303eba79b841fbe67f53b0a65fc82879534266075deef35d4_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:5b648181cb5f1db70ab87fbf67b017c76fc1f83f7add0eacb658bc723763e3e1_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:748bda8560c46129d59afd0680c6ce7421d5bbe007cde1e750a8dc9c417cc88e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:776c81365d8979f2ca91127ff47d38362c7a1682643bb70d9f221a35b4c1f05c_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6deb824bf0fdd43b4c1d89e8b8601e05b1b09dd1b89922fbb6e3ca7ef7bdfea_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:35b685780d05bc62b306783208ceea2a99b78ec1e38099d25ab9e27fe64fc2e9_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:38b7e234acdefe69fa3c01d50447aecf4314443f72410df6b81d9b7d66d8281c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5cbf178c6594a373950ddf0e3c81452aa4163b6e4ebf30a735207a2523cf918a_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:93c75b2ad4a4b85855a1e63cf1e1ca7e0a7b615c771b857d9bfebb7651d18871_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:3605def86edd8ea7f97a2e46ead0764197dfb13a9b5fd00052d91e5eb7e9fafb_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e1fa556d3b407ce1489283a4111eafad610475cbb18d17e238cd20bdc24910dd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e4ac1d06fcc633033dbac0db2749c09678ef71c109c1efd75ad31ecda396f721_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:edb5c32f8172251350021de785fabeb9a00a0d8250758f7857f9ea675c74f540_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:2db7e64a9345be2d431e0ba15601ee9cc8d8dfc219a757a0f7a664d521e8adda_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:67bc0d4e819af067717ddcf765b4d565ba2f953c65633c122577fe192a6bea0b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:7c48b8be9465a9f1b14db62cb2a1b4f2799df16407f306e9ed085946ebbd8d30_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a4770ea3815a2528058f98f6952dbf58ff2d7ac12fd36f8119568c03eb5b0263_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:0100f495023b4ede4318d4cf15f68b9e33f0ba0b48331ce8cebf9250152f3211_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:222f4a27a841f4431f3fb204e1c7d3b55fa030495319514eecb26292c3beb0a0_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:db078402e0278f7dc1a0626bf3afe14c2c4221dd438708136de4a93bb0ee70c4_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fcdcc373e6c1ee28739e8883c4c6b447267987e34b9404ae693cf4331aeac76a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c4059a5b02bdd9d01fed234cde35e9c45e812cc4ee5be35f00ba806f0d84f3d9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f553364c160f85a326a63ef456658486e384c56ed0b1af539ebea2d2e503c81e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30af84e015601d39ad0b62c14cd5ad901ae6a4450ff247ab265b78eb8fac39a3_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:eeb09578f651f65f8f8216cac46869034bf17bff001a2ed73d96d11772532666_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:3dc64c49b4ebe48c00a1e75fdc94bbd8828adf9118e5af8d03d51a245f1112a6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:6e36fd9c87b45f4257f9853d69dc676dfd561c408ddbfbf1c247579a62c54350_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:adf0ed6be1fc6efe5c78191efc5094efd8663b0c3ec3815f7c824f9919045c5b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c604800d8da5342d1a2d3c8d684844d66c4df5d03b686b0666e109aab6dc984b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:8d5c598393328496de5fafd9117d9d4f9fa4fcfb8c5418ade4df1604de18207a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a91a92813ffb55ea55c55c27085ceceaef7734567cb916fb9bdbb18d59a10e12_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:d456e8be4a3a28609cd29dda8c9f6fa46130c8a3d421e23c97d762d089bbe5b6_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:ed64b71e99e3e436e96d00d475870df08877316e3f38df129dfb62d40ef4c45b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:50035776c45729ee560a831d79b3c8afc24a5691167e8c583eadea2474e23641_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:529836546956099d5d3b03861187b4bf92be0fcce6fbe95e5d229d6d5923c28c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:53f6f7a759a936966f39d97e1a7c0b10c86e02122557d710f14f0289f0b673a5_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f56649d00f40db610f0a6fae6827575adbf58b70368c0dad73c794a3c77a35df_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:0e8ab3244ad637aba8448bd161d3a06c85a68afe7ea08e25064c4ed16c7ef650_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:280c976f5b58de0920c9ec4e2284cab56077dc975a46146aeb53509c4b302b83_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:6b5e8518bc692c328963e632a4f0a910761ec536a8f4ed717a576c4bac3ce963_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:df7c038aab12b439d56efe938bc673a24018e023a8de1e1c7aa416e042c55561_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0d7ec956e636933e576c00924726bd24a267bf46a9510a9e50b7a3e79f70daca_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:467ed1130abf80b62f8e0537e9977658d22dbc3cf7cd40ca96e3a54d878feedb_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b2d5d8ec572abb2c30a98be0de1e11ca1a2adf0c6faa3347c6a0d2ef784afeac_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c915c06f28341ba8aa9a1c00fc49504a8816b0610b2cf5304f89fcedca8bc478_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:2a325b078b73e9bfd6e92f8154c4177aeb60dbdd59657227ca37ab1bd46827af_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:671a3dabbb5b5f6b2b4620ce823d6928b65506f2acffa0104a4c2d149a223211_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:7d65d75e025be1ea2f6d82d14f859786f448e619422b10f68cfd4f68ae786a21_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:999c307a79cabd8e9553f5d807d4125df1fef3153ecfce17cca871d5f8051eeb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:758f10fd65669acf6c81de7d53ffacf7de3b2e81498cd0f39990debd9110b69d_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:9d5b06a17a27074c71ca8c4005e1b6b04a4ca488eb2571279805cffc56656c03_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:dad9ed95f9fbba93ad7fe74761b007ca7b4da4c59a73abb1fda223e4c03a422d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fcfa3ae6a7face4161aba93179d149a20d144e8a2a8564650750b4d8f0013496_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:4bd8b3ac46a8db114f1910d03bab222e17e18db8544e8d54ae8a0b1d0e24fa1f_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:97832034bbb82111434b4fbfe1444407ada2a083429a7efba57d55b4d610537b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:a52f59971348bb0e5766a857c16818b379c404c3af300bc697ae1fc8e3f54f15_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:b65119938857e8150f90c3b6bbc4e92d9646b9bc6c39f467e0ba3e4662e28036_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:633d1d92e36d87a1f8adcc69c9b9810ef84ecda5b85dbfbd6eca2bd4e97a2ee7_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:6ef9d153bbf3c65f132cd7d29dbd58d01019615f03eb07967023e446bdced8c3_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:f70052e4ccac8f01affc7e0f1eaf9d14b4eb15544b0b5509fefb4e47a2a820ee_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:12d9ca6fa5893e68c553fd8909113ee1a29a96d3ff3bf32f3824791681de15d9_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:3af4fce899db69f0df6699cec4a3e4b26439c6a18de30232f1ff145f00d5d68a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d2fe0edcc847e8cb3727941b91149007f9c669b0bec5847a425e82212d095d79_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:0889d518d954d62033fefe6df255f5ba816dec01d415d13a5634132f05eeb344_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3115448f5481f6842c97e13aaef4b9a2925a54f6998b9f48000a74faa63bbfc9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3a07fa757f01f4899f9c27883f06f4f7ab567310f5ae6bd44e96eab22d6dd01b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:95c7e0528adda5ba04775f32106977c5e3d95383b6553d57c703fc3e74d50a18_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:04bb985f7378665fe9840691d2ab90465b726431a39518dd087d3689d6817a6a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a008fe2d2aba4b5f793d1d795f04174dfecc2633856129d3786a18b641a34f2d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c368220ebde4dcf75123e81eb9dc4e13544f64edaa79c28a21c93126e58239f6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d4b20eee8037ab15a8e786ef3db3b1fddfc936fc59f249d893227dd1659d1ef5_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3f29b35a62f679a89a6cf199988f89e736707012542d72aa1761c89eef1909fc_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6c1b9f3900fd21b51aab4429b50959da2eec8d1fa64c70e1cc8e5ebe72a24cbd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6d498d0d92f88fd51112e5b14233bd66880e081569a99000e508d5811d3afa56_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6e94ce6c4e49d6de3e1bdbc145712ac8d1a45cc841785b20cb7605c35bef5d35_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1273f2e53f3d42e861050972fb3612e33d8ec159e29fa08bd7dd0e6f896b17a6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c814b9a5380c33f9da6d646d956f2ba425d1eed63e718b44f574b1c2f3f0ea5a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f005f7a9a4bbe701274a5e59e7e0e3c3a72426b19560653575ac6caa0e28cdbf_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fc078ca1f72f833ac498c30a1de5a4c7500c83cd94a3008445373266bfe56acd_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2af9330004a06971944971326d1e8377cbbf4725f9d703db266abd7e5359d7ec_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:89971adb04a2e0a67571cf02489e6e383ae971000028d30305e584aa03784348_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:a3c950362ae071e71de468b7f619678386edfdfd0855d0df075f99d993132720_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:b35a1300569e0905cb750b7217145c94e246036cd498993ead14d07e645d1fb2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:1afcc680effd2ce9de75d5a8ca4b7a1940198d30e5c042094f6eba007f5d673a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:8da6cb3c6dacaf49d3eedbeb0f03324a14734f4c918ffb038f41d0ab2acadd68_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:9235d5f0629ffad8a5af4e8a50660751684ce91eae489122c2f89bb79ee833fc_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:ec49da4e5124996506d50392d8b7078d00c5862bea5e229e7351b5e0e6532c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7c1c1e7d2af533ee43c92204d4e87104f305cbde1af7c8531fa8f1299c16a3ff_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:b1d620feb486ef28423ee30cf03dedd26c30f589b12d87fff47a19cbcde4c3c4_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d13a4baf04347af18f6eaa4cbdcd5f847ebcd396efedeb89ecf1393cd1e378f7_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ecceb25263477c9c9aa06a38df00fc004dd471ee9cccfbdfbc280c29d62f275b_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:932692970cab5f163ce35ed82c9cbbb70c8a7b2224b82d4bab39c86aaef4609b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:9d157aa28bd24d12e49d76723cb91a19f9bc840a02d4850f94b9110530b76e7e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:b5c8be4282dce9ca844df81ff8696bdd5fd25bb58b51c2061d3a3643e3f8dc2a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6265c12a8b31624fe4257abad1889839e2e1612167dafa7274b8d614fdfee64e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:70857d797ad076f5f20217e39673aa6abb0647ecbaf95ab8252075f43a68c073_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ce8fe5503b8bcb1bb338f06dc100f0bed5f85340eda1b73adb58d92e7aaec22c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3b597f3bd5af1c355f4e7c0ed012ca06697cbc37b9bf9a23a5c5f4d0d8162321_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3fe5d5a4ba52d689ec4b106ed8899e5fd75759671a6192641e2e24873707db77_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:557cefcdfef854b4ef381acf2f7de1bd1cf3f29a54398616043c6abcbc8a81f0_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0bdf015e02c235268ce9fefafcb7b841266f434448ae5aaa9ad66e49ed36a39_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:22969e24366f0b43d2cf11c30157842f595bc54976ac096ede75fbdcc5d4985f_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3b487d6d2f8191f74b599cd30b8c982010c10409fd291eb1dc4c6c7b683f7cc0_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7da1135f319c0f3086b822465dfe0d5e1d1d7b547b92dbd42dee8286c8f5c68f_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:e3b0258cdf56b709000aad847e7995099da913bf27676c138a5f9b0ea585bcac_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a26f61e6063fca59ba6ab989888880ce959e81bb54b552ef7bd81a89d69b2b77_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c115cba6d9973e91e208f56a315676b56657e5cf7863d19c0a7103f13edb9b44_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ccb1f539fd2f75a062fc2ed4b0d7f27c360aef121f933975e9ef9235af453934_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:e7a8657e23e6dd922ea658aa52e8145254cd5753589e5ab3732a0d1d574e46f2_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:0ac2a7fd509e0f905d2807f93051fef189de6febdf428b8c14e2618e6b70fe7f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:18bc241751cb6151f5b879ca160aeea4f08290e3fa0922e2c01eded3a9c44919_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:ff30de805aae0da846920093dafb42ca2266b48d7b232ce774070fc1c0da5709_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:10efa408842bcf0b21fad1e720b1a05dc849b5965a891ac470cb8540f517a54a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:61967b9608d0920d92492b9fca096e3598f389329db9cf64c2eb6bd75b846777_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:77f97aa79f52695ab5dfc605b780692847051e9dd679789a0f355510ff6cfe51_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:041d72bac1ff9895f91c83b21a4f92499b948c13354fd074393bb7b9294d46c0_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:505e422599401fbf23ce7000b02929b67d389c9d437974c8fdf91a0ec76061ee_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:e6a4680ab3d78db90ff3cf6502c8e1987844f5c5d8a2c920d2aeb9c8607f8d5e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:82c20bceaf5cb9e4d3e98fa58c98a679c05d55482519ea3fa080aabeab34cdf7_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:ba573576b17d3230c3893819b2e570a0f5c2c9760935b2c882c57b2da99696f5_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:d83381f446c0dd432b817203f7e86897fd07a8e5bae54a537edb4712fa6fc264_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:1222990acec343a998b5085dd11a44583d86b7cc76d8f99b69d8a287116dd57b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:a80bc249c918d1cd92e3c46de8e87b388783ae93b9ac95839eb3b0c0efb8d8a7_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:cd6243cac5a039740a5b47baf91141ed3e70cb5675cec93c93434201d374a6f2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:78dd8bba83fef4a8fffaa7b65ecf9f9c50567eb051f3015c8bdefbaa8334de5c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:b4a51cacc8a06fb6588ea140e3b50ff0166554e8d7b38c77a13be4bab9885356_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:fd24147630533238a126ea21fbba484239135a15023c524137fc8ea25a7065ca_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:88f1d696cd44e19a0852b3d51ba224129b920c5d1859870dc36de53e3cb95c84_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:8acaa460c5ae992714e25d957948477118dfa2eb6adfd0d84a457b9bfdba54d2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b23ea9fa8eaa75fb8e0acfa6f45ff360a8784627cc3fad5d608a80181f193c3f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b70ef1d999b9f5308ecc361d6e4b74c8da65658d1d6802c731b6aa3a24725dc0_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:402f0bc32520a6391d25b5fd70e323df8f810aaa32d6f4a4ec190c32f851a153_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:5d95ebdf8eba75315f3e296f24533697ca66e3b828b886e12f0957d197ee388a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:637f6b5eb27d7a38e108b070130b6a52c0f44923d584ca65534cd88623d86f40_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6c87ec100726f3a8c65475666e604062f391ce3a8d9f516eae64ef7d51247fba_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:61059dc3377fbd1c6d7426712242943cec1ae8a76752709afd421a618e143b47_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:baa34b4e2cccff9bc62d82eb6552639010785d44cb019acc69866cf2aaaa3806_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:fe4370f51955f5a8b5588b7e590a9521cb792066f6259ea0b2b032ac957be413_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:753de30d0d2a7db211426c9ede26bda02b91709680ca5acd2334c921e08fc088_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8d3a4e42a1ab884c9bbc9933b66db18c60e75a344a2d0570b10923c95d70fdb8_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9a3c8ef3d81076660d34fdeb0f7b2d7ec088383fb8666f843eff5c6efdb9016b_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:8451c790ba30fb6395d8074c37c150d88d2adad11920e9b999332ffdb929a328_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:cdf612d1d3001b7e2eab47bee66395dc626a6a41421a9fff247ac7f1e530c281_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:d6584c4860edb91594eda55fcb27a576c6e74313b10569079d5454553dc1b64e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:e970ac1c75d936d92009f8fbc6754079704ea6d7731f2065c345c3a1e4412cdb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3965aaeeb958ccea911ff08d45da2c16ef953f6a473eb69b790fa1afa7c0b76d_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a7e30f2b77bb97ed583ee189ed72dfe9ad2a3928c67eb6d5aade5f1467f5d332_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b3925f84e0f1311b6a2461b89da2d45c79d93fb87c927e8211581a320ca9f9d4_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dfa66f12770ded49cbc84646d0c22440a157fcc71704d9162e1336a26331d9fc_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4601d8011ff56e11bb8821db387d98354312a371bd8670cf915bfa9dd3de99be_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59850338d772efb690f2016093b01feeb4dd3c73805d77c26172ef7f293f1a55_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7fe48ad9f89f61203bd0ee397ccf7c5d9d37ec30b05ba837dc1089fe6ee67068_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9cbca78a3a21d65303eba79b841fbe67f53b0a65fc82879534266075deef35d4_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:5b648181cb5f1db70ab87fbf67b017c76fc1f83f7add0eacb658bc723763e3e1_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:748bda8560c46129d59afd0680c6ce7421d5bbe007cde1e750a8dc9c417cc88e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:776c81365d8979f2ca91127ff47d38362c7a1682643bb70d9f221a35b4c1f05c_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6deb824bf0fdd43b4c1d89e8b8601e05b1b09dd1b89922fbb6e3ca7ef7bdfea_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:35b685780d05bc62b306783208ceea2a99b78ec1e38099d25ab9e27fe64fc2e9_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:38b7e234acdefe69fa3c01d50447aecf4314443f72410df6b81d9b7d66d8281c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5cbf178c6594a373950ddf0e3c81452aa4163b6e4ebf30a735207a2523cf918a_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:93c75b2ad4a4b85855a1e63cf1e1ca7e0a7b615c771b857d9bfebb7651d18871_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:3605def86edd8ea7f97a2e46ead0764197dfb13a9b5fd00052d91e5eb7e9fafb_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e1fa556d3b407ce1489283a4111eafad610475cbb18d17e238cd20bdc24910dd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:e4ac1d06fcc633033dbac0db2749c09678ef71c109c1efd75ad31ecda396f721_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:edb5c32f8172251350021de785fabeb9a00a0d8250758f7857f9ea675c74f540_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:2db7e64a9345be2d431e0ba15601ee9cc8d8dfc219a757a0f7a664d521e8adda_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:67bc0d4e819af067717ddcf765b4d565ba2f953c65633c122577fe192a6bea0b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:7c48b8be9465a9f1b14db62cb2a1b4f2799df16407f306e9ed085946ebbd8d30_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a4770ea3815a2528058f98f6952dbf58ff2d7ac12fd36f8119568c03eb5b0263_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:0100f495023b4ede4318d4cf15f68b9e33f0ba0b48331ce8cebf9250152f3211_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:222f4a27a841f4431f3fb204e1c7d3b55fa030495319514eecb26292c3beb0a0_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:db078402e0278f7dc1a0626bf3afe14c2c4221dd438708136de4a93bb0ee70c4_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fcdcc373e6c1ee28739e8883c4c6b447267987e34b9404ae693cf4331aeac76a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c4059a5b02bdd9d01fed234cde35e9c45e812cc4ee5be35f00ba806f0d84f3d9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f553364c160f85a326a63ef456658486e384c56ed0b1af539ebea2d2e503c81e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30af84e015601d39ad0b62c14cd5ad901ae6a4450ff247ab265b78eb8fac39a3_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:eeb09578f651f65f8f8216cac46869034bf17bff001a2ed73d96d11772532666_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:6684e2eeed9abc9f629cb2e3ccc2d05c408916d80db9ccc90e730435f58f8b6e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:908e4aa53bf2b34f46088898e29b4523a33f1a548833a848c154b2c967899e33_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:ab8a58b352931904265eebaa1e1abbeb903fa9e682e1ddbac56f6b88cfb00160_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:3dc64c49b4ebe48c00a1e75fdc94bbd8828adf9118e5af8d03d51a245f1112a6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:6e36fd9c87b45f4257f9853d69dc676dfd561c408ddbfbf1c247579a62c54350_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:adf0ed6be1fc6efe5c78191efc5094efd8663b0c3ec3815f7c824f9919045c5b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c604800d8da5342d1a2d3c8d684844d66c4df5d03b686b0666e109aab6dc984b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:8d5c598393328496de5fafd9117d9d4f9fa4fcfb8c5418ade4df1604de18207a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a91a92813ffb55ea55c55c27085ceceaef7734567cb916fb9bdbb18d59a10e12_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:d456e8be4a3a28609cd29dda8c9f6fa46130c8a3d421e23c97d762d089bbe5b6_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:ed64b71e99e3e436e96d00d475870df08877316e3f38df129dfb62d40ef4c45b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:50035776c45729ee560a831d79b3c8afc24a5691167e8c583eadea2474e23641_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:529836546956099d5d3b03861187b4bf92be0fcce6fbe95e5d229d6d5923c28c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:53f6f7a759a936966f39d97e1a7c0b10c86e02122557d710f14f0289f0b673a5_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f56649d00f40db610f0a6fae6827575adbf58b70368c0dad73c794a3c77a35df_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:0e8ab3244ad637aba8448bd161d3a06c85a68afe7ea08e25064c4ed16c7ef650_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:280c976f5b58de0920c9ec4e2284cab56077dc975a46146aeb53509c4b302b83_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:6b5e8518bc692c328963e632a4f0a910761ec536a8f4ed717a576c4bac3ce963_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:df7c038aab12b439d56efe938bc673a24018e023a8de1e1c7aa416e042c55561_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0d7ec956e636933e576c00924726bd24a267bf46a9510a9e50b7a3e79f70daca_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:467ed1130abf80b62f8e0537e9977658d22dbc3cf7cd40ca96e3a54d878feedb_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b2d5d8ec572abb2c30a98be0de1e11ca1a2adf0c6faa3347c6a0d2ef784afeac_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c915c06f28341ba8aa9a1c00fc49504a8816b0610b2cf5304f89fcedca8bc478_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:2a325b078b73e9bfd6e92f8154c4177aeb60dbdd59657227ca37ab1bd46827af_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:671a3dabbb5b5f6b2b4620ce823d6928b65506f2acffa0104a4c2d149a223211_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:7d65d75e025be1ea2f6d82d14f859786f448e619422b10f68cfd4f68ae786a21_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:999c307a79cabd8e9553f5d807d4125df1fef3153ecfce17cca871d5f8051eeb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:758f10fd65669acf6c81de7d53ffacf7de3b2e81498cd0f39990debd9110b69d_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:9d5b06a17a27074c71ca8c4005e1b6b04a4ca488eb2571279805cffc56656c03_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:dad9ed95f9fbba93ad7fe74761b007ca7b4da4c59a73abb1fda223e4c03a422d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fcfa3ae6a7face4161aba93179d149a20d144e8a2a8564650750b4d8f0013496_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:4bd8b3ac46a8db114f1910d03bab222e17e18db8544e8d54ae8a0b1d0e24fa1f_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:97832034bbb82111434b4fbfe1444407ada2a083429a7efba57d55b4d610537b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:a52f59971348bb0e5766a857c16818b379c404c3af300bc697ae1fc8e3f54f15_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:b65119938857e8150f90c3b6bbc4e92d9646b9bc6c39f467e0ba3e4662e28036_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:633d1d92e36d87a1f8adcc69c9b9810ef84ecda5b85dbfbd6eca2bd4e97a2ee7_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:6ef9d153bbf3c65f132cd7d29dbd58d01019615f03eb07967023e446bdced8c3_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:f70052e4ccac8f01affc7e0f1eaf9d14b4eb15544b0b5509fefb4e47a2a820ee_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:12d9ca6fa5893e68c553fd8909113ee1a29a96d3ff3bf32f3824791681de15d9_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:3af4fce899db69f0df6699cec4a3e4b26439c6a18de30232f1ff145f00d5d68a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d2fe0edcc847e8cb3727941b91149007f9c669b0bec5847a425e82212d095d79_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:0889d518d954d62033fefe6df255f5ba816dec01d415d13a5634132f05eeb344_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3115448f5481f6842c97e13aaef4b9a2925a54f6998b9f48000a74faa63bbfc9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3a07fa757f01f4899f9c27883f06f4f7ab567310f5ae6bd44e96eab22d6dd01b_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:95c7e0528adda5ba04775f32106977c5e3d95383b6553d57c703fc3e74d50a18_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:04bb985f7378665fe9840691d2ab90465b726431a39518dd087d3689d6817a6a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a008fe2d2aba4b5f793d1d795f04174dfecc2633856129d3786a18b641a34f2d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c368220ebde4dcf75123e81eb9dc4e13544f64edaa79c28a21c93126e58239f6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d4b20eee8037ab15a8e786ef3db3b1fddfc936fc59f249d893227dd1659d1ef5_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3f29b35a62f679a89a6cf199988f89e736707012542d72aa1761c89eef1909fc_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6c1b9f3900fd21b51aab4429b50959da2eec8d1fa64c70e1cc8e5ebe72a24cbd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6d498d0d92f88fd51112e5b14233bd66880e081569a99000e508d5811d3afa56_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6e94ce6c4e49d6de3e1bdbc145712ac8d1a45cc841785b20cb7605c35bef5d35_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1273f2e53f3d42e861050972fb3612e33d8ec159e29fa08bd7dd0e6f896b17a6_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c814b9a5380c33f9da6d646d956f2ba425d1eed63e718b44f574b1c2f3f0ea5a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f005f7a9a4bbe701274a5e59e7e0e3c3a72426b19560653575ac6caa0e28cdbf_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fc078ca1f72f833ac498c30a1de5a4c7500c83cd94a3008445373266bfe56acd_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2af9330004a06971944971326d1e8377cbbf4725f9d703db266abd7e5359d7ec_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:89971adb04a2e0a67571cf02489e6e383ae971000028d30305e584aa03784348_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:a3c950362ae071e71de468b7f619678386edfdfd0855d0df075f99d993132720_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:b35a1300569e0905cb750b7217145c94e246036cd498993ead14d07e645d1fb2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:1afcc680effd2ce9de75d5a8ca4b7a1940198d30e5c042094f6eba007f5d673a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:8da6cb3c6dacaf49d3eedbeb0f03324a14734f4c918ffb038f41d0ab2acadd68_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:9235d5f0629ffad8a5af4e8a50660751684ce91eae489122c2f89bb79ee833fc_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:ec49da4e5124996506d50392d8b7078d00c5862bea5e229e7351b5e0e6532c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7c1c1e7d2af533ee43c92204d4e87104f305cbde1af7c8531fa8f1299c16a3ff_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:b1d620feb486ef28423ee30cf03dedd26c30f589b12d87fff47a19cbcde4c3c4_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d13a4baf04347af18f6eaa4cbdcd5f847ebcd396efedeb89ecf1393cd1e378f7_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ecceb25263477c9c9aa06a38df00fc004dd471ee9cccfbdfbc280c29d62f275b_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:932692970cab5f163ce35ed82c9cbbb70c8a7b2224b82d4bab39c86aaef4609b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:9d157aa28bd24d12e49d76723cb91a19f9bc840a02d4850f94b9110530b76e7e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:b5c8be4282dce9ca844df81ff8696bdd5fd25bb58b51c2061d3a3643e3f8dc2a_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6265c12a8b31624fe4257abad1889839e2e1612167dafa7274b8d614fdfee64e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:70857d797ad076f5f20217e39673aa6abb0647ecbaf95ab8252075f43a68c073_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ce8fe5503b8bcb1bb338f06dc100f0bed5f85340eda1b73adb58d92e7aaec22c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3b597f3bd5af1c355f4e7c0ed012ca06697cbc37b9bf9a23a5c5f4d0d8162321_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:3fe5d5a4ba52d689ec4b106ed8899e5fd75759671a6192641e2e24873707db77_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:557cefcdfef854b4ef381acf2f7de1bd1cf3f29a54398616043c6abcbc8a81f0_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0bdf015e02c235268ce9fefafcb7b841266f434448ae5aaa9ad66e49ed36a39_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:22969e24366f0b43d2cf11c30157842f595bc54976ac096ede75fbdcc5d4985f_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3b487d6d2f8191f74b599cd30b8c982010c10409fd291eb1dc4c6c7b683f7cc0_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7da1135f319c0f3086b822465dfe0d5e1d1d7b547b92dbd42dee8286c8f5c68f_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:e3b0258cdf56b709000aad847e7995099da913bf27676c138a5f9b0ea585bcac_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a26f61e6063fca59ba6ab989888880ce959e81bb54b552ef7bd81a89d69b2b77_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c115cba6d9973e91e208f56a315676b56657e5cf7863d19c0a7103f13edb9b44_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ccb1f539fd2f75a062fc2ed4b0d7f27c360aef121f933975e9ef9235af453934_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:e7a8657e23e6dd922ea658aa52e8145254cd5753589e5ab3732a0d1d574e46f2_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:0ac2a7fd509e0f905d2807f93051fef189de6febdf428b8c14e2618e6b70fe7f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:18bc241751cb6151f5b879ca160aeea4f08290e3fa0922e2c01eded3a9c44919_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:ff30de805aae0da846920093dafb42ca2266b48d7b232ce774070fc1c0da5709_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:10efa408842bcf0b21fad1e720b1a05dc849b5965a891ac470cb8540f517a54a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:61967b9608d0920d92492b9fca096e3598f389329db9cf64c2eb6bd75b846777_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:77f97aa79f52695ab5dfc605b780692847051e9dd679789a0f355510ff6cfe51_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:041d72bac1ff9895f91c83b21a4f92499b948c13354fd074393bb7b9294d46c0_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:505e422599401fbf23ce7000b02929b67d389c9d437974c8fdf91a0ec76061ee_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:e6a4680ab3d78db90ff3cf6502c8e1987844f5c5d8a2c920d2aeb9c8607f8d5e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:82c20bceaf5cb9e4d3e98fa58c98a679c05d55482519ea3fa080aabeab34cdf7_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:ba573576b17d3230c3893819b2e570a0f5c2c9760935b2c882c57b2da99696f5_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:d83381f446c0dd432b817203f7e86897fd07a8e5bae54a537edb4712fa6fc264_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:1222990acec343a998b5085dd11a44583d86b7cc76d8f99b69d8a287116dd57b_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:a80bc249c918d1cd92e3c46de8e87b388783ae93b9ac95839eb3b0c0efb8d8a7_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:cd6243cac5a039740a5b47baf91141ed3e70cb5675cec93c93434201d374a6f2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:78dd8bba83fef4a8fffaa7b65ecf9f9c50567eb051f3015c8bdefbaa8334de5c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:b4a51cacc8a06fb6588ea140e3b50ff0166554e8d7b38c77a13be4bab9885356_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:fd24147630533238a126ea21fbba484239135a15023c524137fc8ea25a7065ca_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:88f1d696cd44e19a0852b3d51ba224129b920c5d1859870dc36de53e3cb95c84_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:8acaa460c5ae992714e25d957948477118dfa2eb6adfd0d84a457b9bfdba54d2_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b23ea9fa8eaa75fb8e0acfa6f45ff360a8784627cc3fad5d608a80181f193c3f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b70ef1d999b9f5308ecc361d6e4b74c8da65658d1d6802c731b6aa3a24725dc0_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:402f0bc32520a6391d25b5fd70e323df8f810aaa32d6f4a4ec190c32f851a153_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:5d95ebdf8eba75315f3e296f24533697ca66e3b828b886e12f0957d197ee388a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:637f6b5eb27d7a38e108b070130b6a52c0f44923d584ca65534cd88623d86f40_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6c87ec100726f3a8c65475666e604062f391ce3a8d9f516eae64ef7d51247fba_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:61059dc3377fbd1c6d7426712242943cec1ae8a76752709afd421a618e143b47_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:baa34b4e2cccff9bc62d82eb6552639010785d44cb019acc69866cf2aaaa3806_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:fe4370f51955f5a8b5588b7e590a9521cb792066f6259ea0b2b032ac957be413_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:753de30d0d2a7db211426c9ede26bda02b91709680ca5acd2334c921e08fc088_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8d3a4e42a1ab884c9bbc9933b66db18c60e75a344a2d0570b10923c95d70fdb8_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9a3c8ef3d81076660d34fdeb0f7b2d7ec088383fb8666f843eff5c6efdb9016b_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code"
}
]
}
RHSA-2026:25045
Vulnerability from csaf_redhat - Published: 2026-06-17 12:50 - Updated: 2026-06-29 17:50The Route OpenShift resource allows to define routes to make pods reachable at a subdomain through HAProxy. It was found that the checks performed on the spec.path YAML stanza in a Route document was insufficient and could allow a controlled injection of the HAProxy configuration.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le | — |
Workaround
|
A flaw was found in Distribution, a toolkit used for managing container content. When specific caching and deletion features are enabled, a remote attacker can exploit a vulnerability that allows previously deleted content to become readable again. This occurs because the system does not fully remove all references to the deleted data, leading to unauthorized information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le | — |
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.16.64 is now available with updates to packages and images that fix several bugs and add enhancements.\n\n This release includes a security update for Red Hat OpenShift Container Platform 4.16.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container Platform 4.16.64. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:25043\n\nSpace precludes documenting all of the container images in this advisory. See the following Release Notes documentation, which will be updated shortly for this release, for details about these changes:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.16/html/release_notes/",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:25045",
"url": "https://access.redhat.com/errata/RHSA-2026:25045"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-1784",
"url": "https://access.redhat.com/security/cve/CVE-2026-1784"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35172",
"url": "https://access.redhat.com/security/cve/CVE-2026-35172"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_25045.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.16.64 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-29T17:50:46+00:00",
"generator": {
"date": "2026-06-29T17:50:46+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:25045",
"initial_release_date": "2026-06-17T12:50:59+00:00",
"revision_history": [
{
"date": "2026-06-17T12:50:59+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-17T12:52:36+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:50:46+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.16",
"product": {
"name": "Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.16::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1780967969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780960598"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Aea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780957973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1780955346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3A1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1780954282"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780957745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780958790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Afc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780965379"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780960424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Aee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780962715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780965261"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1780954184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Aacc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780955966"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780956573"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780956186"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780958548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780965616"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Af507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780957349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780959527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780954579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780956236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780954672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3Aed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1780954148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780962530"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780957427"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780954242"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780964728"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Ada2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780958029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Ac65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780954836"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Afd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780954639"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1780953527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3Af46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1780953439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3A5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1780953525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3A68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1780953435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Ae9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780964622"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Aaf4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780958686"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780955797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Ad32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780964169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1780967361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780956428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Ac5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780965298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Ab55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780965272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1780964211"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1780960564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780965430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3Ac03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780060322"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780428340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Afd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1780963773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780962047"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780594615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780967097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780957370"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Aabceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780954881"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Aa19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780965588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780956686"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Aea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780965248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3Aaff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780964560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Ad7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780957268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Aed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780959369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Af3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1780059552"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780965494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780957458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780960167"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780954493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Af48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780960327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1780954302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3Ad19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1780954400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3Ae77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1780954295"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3Aebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1780954299"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3Ad22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1780954215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1780954271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3Aa48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1780954248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1780954303"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1780954231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3Ab00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1780954307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3A28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1780954262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Ad51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780960731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780956538"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Ac9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780594822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780965543"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3Abed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780957766"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780965629"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780957334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780957695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Aa7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780955342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Afd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780958141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780965586"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780957505"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Aa15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780956416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780964979"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780955759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780962947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780964976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780954425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Ab7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780962617"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780956807"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780956139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780964189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780965197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780956482"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Ae506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780958722"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780954278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Acc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780956132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Ac6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780962045"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780955482"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780953907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Aa24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780961725"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780954342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-rhel9@sha256%3A23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9\u0026tag=1780958414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-rhel9-operator@sha256%3A4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator\u0026tag=1780956246"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-webhook-rhel9@sha256%3A2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9\u0026tag=1780956199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Aab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780954197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Ab301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780957288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Ae1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780956187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780955050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780954298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3Afa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780954704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3Ad8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780956026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Aa48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780058713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1780954305"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780956959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Ac07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780971649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3A0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel9\u0026tag=1780967949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Aa844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780971667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Ae5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780961156"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780962676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780965314"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Ae436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780956431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Af2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780957060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Aa7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780965317"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3A30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1780954269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1780954198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Aca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1780954743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780960460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780963546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780980285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780954884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780965337"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Acd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780962132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780588732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3Ab23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780958624"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780955368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Af555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780967769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780958629"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780962770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3Afe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780963436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-rukpak-rhel9@sha256%3Ab534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel9\u0026tag=1780965152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780965713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Ac48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780954645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780965697"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780957713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Af762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780955405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780963947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780959196"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780966004"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64",
"product_id": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-k8s-prometheus-adapter-rhel9@sha256%3Aa0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9\u0026tag=1780957093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780954513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sdn-rhel9@sha256%3Afb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sdn-rhel9\u0026tag=1780957869"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Adfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780954250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780959715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780960643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780960892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Ada4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780959410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780960435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780965238"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780964066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780956985"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780960598"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780957973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1780955346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3Ad28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1780954282"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780957745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780958790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780965379"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Abaacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780960424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780962715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Abe92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780965261"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Ae4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1780954184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Abe44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780955966"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780956573"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ac41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780956186"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780958548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3Adcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780965616"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780957349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3Ad7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780959527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1780954573"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3Ad17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1780956738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1780954184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780954579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780956236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780954672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1780954148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Af7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780962530"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Aa949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780957427"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780954242"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Aa3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780964728"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Af6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780958029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Adfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780954836"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780954639"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3Adf5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1780953527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1780953439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Ac73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1780953525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3Aef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1780953435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780964622"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Af8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780958686"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780955797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780964169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Ab9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1780967361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Ae441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780956428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780965298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Af7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780965272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1780964211"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1780960564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780965430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780060322"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780428340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Ac81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1780963773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780962047"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Ab79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780594615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Aeec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780967097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Aec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780957370"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780954881"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780965588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780956686"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Ae6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1780967969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780965248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780964560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780957268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780959369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1780059552"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Af06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780965494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780957458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780960167"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780954493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-alibaba-cloud-controller-manager-rhel9@sha256%3A48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9\u0026tag=1780954132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64",
"product_id": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-alibaba-machine-controllers-rhel9@sha256%3Ac75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9\u0026tag=1780954162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780960327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1780954302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3Aa68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1780954400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3A6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1780954295"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1780954299"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3A1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1780954215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3Ad0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1780954271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1780954248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1780954303"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1780954231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3Aa49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1780954307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3Aa168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1780954262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780960731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780956538"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780594822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780965543"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3Aab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780957766"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780965629"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780957334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780957695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Ab8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780955342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780958141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780965586"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780957505"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780956416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780964979"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780955759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780962947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Aba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780964976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780954425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780962617"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Ae6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780956807"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Ad2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780956139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Aa3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780964189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780965197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780956482"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780958722"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780954278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Ab75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780956132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780962045"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780955482"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3Aba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780953907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Acbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780961725"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780954342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-rhel9@sha256%3A282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9\u0026tag=1780958414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780971649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-rhel9-operator@sha256%3A3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator\u0026tag=1780956246"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-webhook-rhel9@sha256%3Abbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9\u0026tag=1780956199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780954197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780957288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780956187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Ac1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780955050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780954298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780954704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3Ab8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780956026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Af5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780058713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1780954563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Ae5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1780954182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1780954896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780965663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1780955295"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1780954305"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780956959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3Ab391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel9\u0026tag=1780967949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780971667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780961156"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780962676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Ada6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780965314"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Ab267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780956431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780957060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780965317"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3A92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1780954269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1780954198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1780954743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780960460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780963546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780980285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780954884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Ac04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780965337"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780962132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Ae9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780588732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780958624"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Abd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780955368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780967769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-cloud-controller-manager-rhel9@sha256%3Af49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9\u0026tag=1780954121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-machine-controllers-rhel9@sha256%3A6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9\u0026tag=1780954182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780958629"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780962770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3Aeb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780963436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-rukpak-rhel9@sha256%3Aee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel9\u0026tag=1780965152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Adce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780965713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780954645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780965697"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780966004"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Ad92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780957713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Ac1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780955405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780963947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780959196"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1780954989"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1780954179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1780954133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1780955341"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-k8s-prometheus-adapter-rhel9@sha256%3Aba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9\u0026tag=1780957093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780954513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sdn-rhel9@sha256%3A7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sdn-rhel9\u0026tag=1780957869"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Aab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780954250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Ad16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780959715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9\u0026tag=1780954164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9\u0026tag=1780954164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3Ab65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator\u0026tag=1780954211"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3Ab65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator\u0026tag=1780954211"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cloud-controller-manager-rhel9@sha256%3A60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9\u0026tag=1780954181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cluster-api-controllers-rhel9@sha256%3A77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9\u0026tag=1780954176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780960643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780960892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Aef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780959410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780960435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780965238"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780964066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780956985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-csi-driver-syncer-rhel9@sha256%3A2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9\u0026tag=1780954214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-problem-detector-rhel9@sha256%3Ae3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9\u0026tag=1780954141"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780960598"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780957973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780957745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780958790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780965379"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Aecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780960424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Aeb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780962715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780965261"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1780954184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Af45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780955966"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780956573"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780956186"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Abab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780958548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3Ae3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780965616"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Ac03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780957349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780959527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780954579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Aa11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780956236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780954672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1780954148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780962530"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780957427"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Ab41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780954242"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Af9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780964728"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780958029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Aae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780954836"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Afe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780954639"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780964622"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Afc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780958686"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Aa6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780955797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Afbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780964169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Aad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1780967361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Afefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780956428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Ab838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780965298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Acd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780965272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Ab19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1780964211"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1780960564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780965430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3Acec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780060322"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3Afaa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780428340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Ac31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1780963773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780962047"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780594615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Add93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780967097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780957370"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780954881"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Af1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780965588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780956686"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1780967969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780965248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3Af8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780964560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780957268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Afef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780959369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1780059552"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780965494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Aa05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780957458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780960167"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780954493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780960327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780960731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780956538"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780594822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780965543"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780957766"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780965629"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780957334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Aad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780957695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780955342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Ac81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780958141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780965586"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Aa39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780957505"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780956416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Af9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780964979"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780955759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780962947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Ad8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780964976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780954425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780962617"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Aa5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780956807"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Acf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780956139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Ab42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780964189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ae642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780965197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780956482"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780958722"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Acecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780954278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Ad1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780956132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780962045"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780955482"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780953907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Aa3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780961725"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780954342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-rhel9@sha256%3Ab6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9\u0026tag=1780958414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-rhel9-operator@sha256%3A5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator\u0026tag=1780956246"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-webhook-rhel9@sha256%3A048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9\u0026tag=1780956199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780954197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780957288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Aeecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780956187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780955050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1780954563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Afb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1780954182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1780954896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780965663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3Af835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1780955295"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Ab67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780956959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Aa47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780971649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3A546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel9\u0026tag=1780967949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Aaa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780971667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780961156"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780962676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780965314"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780956431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780957060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Aeeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780965317"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Af620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780960460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Acbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780963546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Aad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780980285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780954884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780965337"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780962132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780588732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780958624"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780955368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Af48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780967769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780958629"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780962770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780963436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-rukpak-rhel9@sha256%3A4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel9\u0026tag=1780965152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Ac92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780965713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780954645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780965697"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Aed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780957713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Af4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780955405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780963947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780959196"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Af7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780966004"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x",
"product_id": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-k8s-prometheus-adapter-rhel9@sha256%3A444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9\u0026tag=1780957093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Ade7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780954513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x",
"product_id": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sdn-rhel9@sha256%3Adb07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-sdn-rhel9\u0026tag=1780957869"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780954250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Aea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780959715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780960643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780960892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Ae53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780959410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Aae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780960435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Ac75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780965238"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780964066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Add573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780956985"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780960598"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Ae607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780957973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3Ac2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780957745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780958790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780965379"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780960424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780962715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780965261"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1780954184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780955966"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780956573"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ab5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780956186"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780958548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780965616"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780957349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780959527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1780954573"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3A3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1780956738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3Ab69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1780954184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Ab919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780954579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Af65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780956236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780954672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1780954148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Af481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780962530"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780957427"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780954242"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Aa5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780964728"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Accc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780958029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Adbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780954836"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780954639"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Af2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780964622"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780958686"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780955797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Aa7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780964169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1780967361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780956428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780965298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780965272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Afe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1780964211"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1780960564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780965430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780060322"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3Ab91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780428340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1780963773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780962047"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780594615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Aa3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780967097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Aaadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780957370"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Adcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780954881"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780965588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Aabe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780956686"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Ad98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1780967969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780965248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780964560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780957268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Acc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780959369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Ade490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1780059552"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780965494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Acf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780957458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780960167"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780954493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780960327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780960731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780956538"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780594822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780965543"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3Ad99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780957766"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Ad874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780965629"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3Ab42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780957334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Ae34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780957695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Aada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780955342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780958141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780965586"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Adf30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780957505"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780956416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780964979"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780955759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780962947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Ad1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780964976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780954425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780962617"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Aa7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780956807"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780956139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Abdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780964189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780965197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780956482"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Af9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780958722"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780954278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780956132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780962045"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3Acca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780955482"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780953907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Ac7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780961725"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780954342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-rhel9@sha256%3A0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9\u0026tag=1780958414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-rhel9-operator@sha256%3A602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator\u0026tag=1780956246"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-webhook-rhel9@sha256%3A536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9\u0026tag=1780956199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Ad4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780954197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780957288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780956187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780955050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780954298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780954704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780956026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Af86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780058713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Ac6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780965663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780956959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780971649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3A26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel9\u0026tag=1780967949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Adbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780971667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780961156"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780962676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780965314"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780956431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Addbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780957060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Ab8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780965317"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Ae70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1780954743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Adb05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780960460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780963546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780980285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3Ad374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780954884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780965337"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Ad520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780962132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780588732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3Aba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780959196"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780958624"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780955368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Abd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780967769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780958629"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Aaccc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780962770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780963436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-rukpak-rhel9@sha256%3A5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel9\u0026tag=1780965152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Aaa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780965713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780954645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780965697"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780957713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780955405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780963947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Ae833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780966004"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1780954989"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3Aa4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1780954179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1780954133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3Ab4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1780955341"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-k8s-prometheus-adapter-rhel9@sha256%3Ad5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9\u0026tag=1780957093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Ac3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780954513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sdn-rhel9@sha256%3Aadc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sdn-rhel9\u0026tag=1780957869"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780954250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780959715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ade7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780960643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780960892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780959410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780960435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780965238"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Ac891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780964066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780956985"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-1784",
"cwe": {
"id": "CWE-15",
"name": "External Control of System or Configuration Setting"
},
"discovery_date": "2026-02-02T21:05:20.978000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2436075"
}
],
"notes": [
{
"category": "description",
"text": "The Route OpenShift resource allows to define routes to make pods reachable at a subdomain through HAProxy. It was found that the checks performed on the spec.path YAML stanza in a Route document was insufficient and could allow a controlled injection of the HAProxy configuration.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "ose-cluster-ingress-operator: Remote Code Execution Through HAProxy Configuration Injection",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-1784"
},
{
"category": "external",
"summary": "RHBZ#2436075",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2436075"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-1784",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-1784"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-1784",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-1784"
}
],
"release_date": "2026-06-02T07:12:31.172000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T12:50:59+00:00",
"details": "For OpenShift Container Platform 4.16 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.16/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:ad8022623b6accc6c6d27fb415027c7f2b61d9a118e4e402f6492ee613bd340c\n\n (For s390x architecture)\n The image digest is sha256:f191592af6e6308f387d91b00bba04e4b1b398bb261bd2223b00c9e153d81b24\n\n (For ppc64le architecture)\n The image digest is sha256:6562cc1250b96eaafdabba0d6618d9962574a794fa47f2630a02963a8543c842\n\n (For aarch64 architecture)\n The image digest is sha256:4f7e3ee3145158e72bd4b4997232756e6f476c23ce2fc0469d43e8f717a401ee\n\nAll OpenShift Container Platform 4.16 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.16/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25045"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "ose-cluster-ingress-operator: Remote Code Execution Through HAProxy Configuration Injection"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T12:50:59+00:00",
"details": "For OpenShift Container Platform 4.16 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.16/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:ad8022623b6accc6c6d27fb415027c7f2b61d9a118e4e402f6492ee613bd340c\n\n (For s390x architecture)\n The image digest is sha256:f191592af6e6308f387d91b00bba04e4b1b398bb261bd2223b00c9e153d81b24\n\n (For ppc64le architecture)\n The image digest is sha256:6562cc1250b96eaafdabba0d6618d9962574a794fa47f2630a02963a8543c842\n\n (For aarch64 architecture)\n The image digest is sha256:4f7e3ee3145158e72bd4b4997232756e6f476c23ce2fc0469d43e8f717a401ee\n\nAll OpenShift Container Platform 4.16 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.16/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25045"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-35172",
"cwe": {
"id": "CWE-524",
"name": "Use of Cache Containing Sensitive Information"
},
"discovery_date": "2026-04-06T20:01:47.396100+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455571"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Distribution, a toolkit used for managing container content. When specific caching and deletion features are enabled, a remote attacker can exploit a vulnerability that allows previously deleted content to become readable again. This occurs because the system does not fully remove all references to the deleted data, leading to unauthorized information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/distribution/distribution: Distribution: Information disclosure via stale references after content deletion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35172"
},
{
"category": "external",
"summary": "RHBZ#2455571",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455571"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35172",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35172"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35172",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35172"
},
{
"category": "external",
"summary": "https://github.com/distribution/distribution/security/advisories/GHSA-f2g3-hh2r-cwgc",
"url": "https://github.com/distribution/distribution/security/advisories/GHSA-f2g3-hh2r-cwgc"
}
],
"release_date": "2026-04-06T19:08:44.512000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T12:50:59+00:00",
"details": "For OpenShift Container Platform 4.16 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.16/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:ad8022623b6accc6c6d27fb415027c7f2b61d9a118e4e402f6492ee613bd340c\n\n (For s390x architecture)\n The image digest is sha256:f191592af6e6308f387d91b00bba04e4b1b398bb261bd2223b00c9e153d81b24\n\n (For ppc64le architecture)\n The image digest is sha256:6562cc1250b96eaafdabba0d6618d9962574a794fa47f2630a02963a8543c842\n\n (For aarch64 architecture)\n The image digest is sha256:4f7e3ee3145158e72bd4b4997232756e6f476c23ce2fc0469d43e8f717a401ee\n\nAll OpenShift Container Platform 4.16 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.16/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25045"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4f89e916f1566d11a5ff7b264151f3aea6cc925516393f533bd86a6f5fdbe041_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5be328a131be1ec78e0b3989a5d2362f65c79261fad26eddb1c121525f241972_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e607e539e5a9f0fa981449034513ae8a2e35e0fe6902906c4323a33cc9096385_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ea7da904a8488ed2a83ba7e898d18a849906c31c3830f9f8ab5c16927a441430_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3d28584601d98981f8a53f2416972a705a097cb685215d9d1fa176a99b6f10f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:45177d65d7245c5493591f835bccd7dae7b385fda7946c09709125ce5cc9ac77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5782c0ca95cabfa28226f4024159c3be509916cb72707f7b08ff21de53a94fd1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c2d9559b5bde056c303ebedc9eebad0c51e846ddfe3bf7f0b4f2ec10aecc11a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:249486d7063e28987398f36144b63be7fc41f73316409b608ff0e52a113244b1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ab5a90137c5983e547d121da59fe3eb44068c832e084a39e85ca2c130ba7d9a9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bed843d9b83c75df42ee6192e1eadec3c8d4479539cbebb74d38a3de3328b836_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d99a4551794ab99503e6ba88a3f35ae99c163e6ff5a5fcefb11e3b127ae42790_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5418a90638dd6218926ac533880453302338c469f0629b67f018bbf62bfefabb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6e4213e7aab2ebc2b7117ae2633908aba929399ec47d50c347d5c1ba9a784509_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dcff3a566484624264aee0d4d27758e2e24cee98562ba6cb0f73dfd13f19ec15_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e3bb70dc060c4de6883c231962ee172430371a5e779bffd79786c3f7a30b6414_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4bc3a60afbfc20e981040f351e4951a245f5ec2e4a7db4dd4ed8bfcb8ea88a61_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9624f08393403f7b6c65f755bd4be36eda4cdacfb78365ad2beb6061d83b5cd1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f481b8731608abb2d2a1afcb6ada4e5b47860742bbc4a729d46bb01ea27a8258_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f7f0e338ac3bf7364a1f2f450a123a2bbd033985832f588e9c8bb779a98468e5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:5aaf888d66b114f00e5cad1ee30c0328cdee0a205169bf1828b52b5c71b6ea86_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6631596c7b3aea7a0d7e2622186a18cf30db9164b0681a95957d9839e0f9f04f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7def3bc3c8c49766507845f7b7b958013d50677c02b0f3fe077a845fdc017c87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a949718df83bfe9eb7f09374d4804c8dc2b560a307fdd73f6912a0204b4ead0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:27c89e9bf4a8a45a82ea5f912e2fcba5b5b9459a4dad3cd335bf6ef32fae28f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:51c9bb1cdfe28bc2dd34c516812bfca1b8243d0093692f43ab5da558fc3b6ca7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8ce9b27334d78ce3225d847f2d82b2bb42333d4280c96fd44b63359937fc31e1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e5980c74656c38bec2fc6c7d9ffaedfa4a1b9af36990011c756b4bf4688eac62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:021afeb5e6b4b441dc0d41dfaeb7f45cfaba4a336a0d274fb89814065945c839_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:727018a7700804e05d3edac726366fc95a10623eeb8bed5f997074b9854e5faf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b267efee2afd4611376a59c6efbc2beccb3f9a58844d5d7b44460330b3ac39a3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e436216b1fabf64c03577472ffb191a96862c6d70e22c1582e3c2ed11d0988e8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3672eb8d323f569b5ba13efbcb57735f3b9e2a69bf6b7a59635aeb34c329d0f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bd404ba7010ad4fd9c21227373de5ef9f343953bece331b78d61315006d3e42c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f48959cc8e58d8182209608878a9f70f8f59b7a604b6e2c5df6cbc368a622c2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f555c9f5f7cccd105ebe06bf7ac43a784b228de512f98416037e64dff2719b04_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ef6f51471e39c9ec1f213f9d87dc6cac79d703bb58f17c29c468d8a841e91f4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:49c8888cfa8c274dd2c46ab0dbd991bcf583e5106a482ca50b38ff154f0ea80c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:517cdf168dd4221f3b9d25ba17c7188c16962d277c4e629ff6c1235789c5788c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8cd5936c05370d050704352c1e4a237c266d017a05cd3bb7d2b3aff7c70a03b8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:167ae48cbf3445b7384de5946919302afeae5f54af1a82be14bf39f7fb81b67b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:783139b8bcbffdeec59903a2f3a28e34967802e28573ebe689ecf41591051de3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c3078fa48ea23663494febfb7a82631b30c6752f35873a0591a267fb5eb7955b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:de7812ccb88754ca89af9a9d99cf6919b0354880614b99c599355ee0c41c9cb2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1238d5729c4b8db05299e734a7530514db295291e9cc9df4fb35bcd0f9c9bf7d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:5e792f91649639de0012a4eec6c95fd925cbd1852e79f0dce5bd26080c34595e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:de490896f5c8a0f7f3fa3d664f73573e6d6a094902b32a2233201fc568648b43_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f3e8faf1e330a4047f5d8717bdaa97796a9a9548e168487e906140110cdda87e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:063f39e81828f396ad90d2e270a0c0d961f746234cb13f315be0791ab50eb390_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8bcb42fc1a0ab5e16ab631104bfcdd2fbfce601cfe38d18d9cbab3b911bb5c7f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:97bf851e077c377f8d0ea188930c2ad6bb5b3aa419401dc2c15020491ba0e001_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06c66ee67491f41e5db297ed1c9dd9578701f8e8fa67e6b4132a806156316c0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5187eaf3fac9236bc64e3e58d1e2cc0217432fc57e1bbf4015cf73db05829d53_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:85dea54ff1b5184dc6b8f87ab4d899baedc44b4bbdc685b6898d8512bce4a726_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:a05130f8ea67c447e9b46a2c2c424f726a71dfecf78fac4fdc1c174f41c5ced1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:cf5e48a4044d9aa4608c4b327540eb424deecdb1fc0b76fca9b5420fab8a7139_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:28d24fbff9dbc6e49436f357c8c98f0a598969b0aa7919bf4827998465fb8420_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6918af3d8f28fb6a11ff175091c926a4ee92ce782b50d3703b3b06547ab167a2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f1f953a840a3dcdf643fdc9fb34e6f3c935603e1ab21cdd03949f39d016b30d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9ce779b369bfd5e5b6ab509cbb297ca37662829bac1f5d7816517094bf6d3f56_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:2a3f954ce9099015298abe281a3d94e2fce924ec5bc4558e143a171bc342133b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:32cbcf1e5f00dcb11a5807cce9a02d0abd7439f5cb63c38a90c4f070c14c4ea4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:367ddfa9cc1eca006ba2f9c838a79d9d68563df4e0103aeaf244b02e79bfdc27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6ac3a322bccb3de03d083051e7383be58fb540748ce445b2a3b3bbc568d09a65_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:48687e02556d45870fd187257d46eaf1c8d2bec96209956535f59d6f650c5a4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:c75dab613edecd1140998ab728863fd6ed93310a0a2d6c8c5a41d8ec3fb41b91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e38c01f59b2ed29cebeaa7e4fa2cfb49b67704c8391f810d026de7b40fa7e21_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5b7b30994ee51034fc6a135670a779333c8e94e2e81e2d524b84be97611ac52f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:627b7a078d57e08c64c9ddea9d3760b965edb031aca86656e5e0e4c9bc9db6d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f48f12d844608c89b25a92d772688df050aad37ab24e729dc64766dc30879432_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:52ec6b96f49ef21f6ceb2f86bd9cfe24e4f6a921b3abffc4e65ce63177e88fb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8dd8f0612f5c545da73581f4ab78460248288c4c3a52f32821de4bb5b6aca393_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a68af1f801b6d6535736f76ea6c5f30f2a20f62b149667ddde96c213a8782719_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d19433c16cddb4dec2c1d16d295d710eddfba147309b101726670db73a08381a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2c004e5b6eab4b618d47dae2141ab0bb9e1f34e3d9060eabfde8aea53a9213c4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ebe4d646dbae22c28ca6bbbbcd0768d530627f9051452619195319b6a21a4a62_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6cf06a1cd5511aad5f91e4bdd2a2a6823b1ee0c944647b449499f53cf4f9c9af_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:e77f7cd3a759b3c53ef0f7b90bb95a686da28816ab8296bccbd5b8b7a9460458_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e044647d4b588fa29303c8fcf535f102a638be5aad30ed62cb4cb967fa70c35_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d22409b23e680b69aa6567501c3d18b5ba56ee2b034678d2f3eb9a6dac55a364_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2e28618c84d4eea7839ae52078b31e026cfb5e175a901ee7e62d1c992c38b7da_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d0ed01dbbb4203e599f262051a6ae297f807fe9150bcd45a8af67c26d7edf464_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:4b04b24dc8048dda3af915eefcb4c2b156f017a542d75927c05953aadf7d4f04_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a48f26badeaa1222d8cf938589586a946c7a2e83fdd2e0cd1aaaeda030ae5075_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2b48b0e54fe576954480a72d3c03db935760d43ab41c9dd010ebf9b026cbea86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:979b2ddaf94bc61a393a066165de4517b91cd835fd8c334f0d603ab7b0f1a559_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a49aea2ebeeeac25c73b4bb44ee7fddbb64081b2558061567e839854f462b014_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b00187c1c9dbd499abb14092f876dc4fb157354d0b5c149a750e56c25162c850_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6898d67f79edc1798dc39716ebc858ab9f3dac2d25f4e89e19bedc997865029d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:94b679c9707b3e1927ef32bb4a8bf17cb8db80a4fda5bc4e59acd7594e909063_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d99de7874969a1d2a325c5369823ce60242e89811bdc9d92c5a96440d3ba417_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:d28d977f5a5a6f4cb12969a00760f127bdca1438c67a05560a8e99dc3f42bbb7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:0f6d01832b16b015de0569420a0e993ec13fa2f102176391ad07cd7914bbe3dc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9cb6cc8756b2d6c0307dcd3c5f5d78aaaf92ce1c4f35db364bfed1385bee1751_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:28002456e93d02dc1a01a9877d37fadb0ff65996abd3816ef8f4585844e65b9a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a168ad62e075195548d81771e72b9c76caf0203e070531f84e62aa59dfa17b88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0683631723150d56be9af3388a9ea81df0a4ff574957d0b2cac92376d7e09e56_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:68b878db5bf24af1962ebbb084ac21308b78d72860b6970d09e05b1f6547b62c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8062a5b8aa5c1b633e7c670fdecb872b35f067a3449c514055f3a90bdf2f3852_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d51492f71582073bbdda84f01ff2155e276cc2f5ffce6689998cb04af8840a05_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:245db83d4f2ea21e0a08eef998c973d1231324a716c8ba3681dae443a50f42fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4b7cec244fb927573cb3086aec65fae0e30fe93a3695acf06ba767ac45fb44c5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6acbf0bb0f157ee1074df6e4bc418ad29863ea34a7967a086be0726c02152a5d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:731f053038e51b66f05842c0f219928df9a45f0e983ad740ef388c3d5bd4e3d3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03084044db21b6a706192824d3893adaa90e310afe4e85e5b787f2e570f16a66_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:47701aaa5e3b5039f4af33e24f6332a0f96687013f75564283d9a9d557eb8bee_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5081e13b3183ca0c13b177edae21bb6d482482c8746330b8b71e193f7fcd2ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:758c8d0cad38612998b8074a0a51e1019ecbd711d5797719d179e9907302f14c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:5e00e5af0f9c0999e7eabcbc4937698cbbb516cdc9fa1ceb2dbe331559f6acdc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:730977cdab7d4c6d53db7fa627598d429be5e9bedd2aa00e6ced49318f5c19b8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8055357171531a7b5090e63ac88b88f905215ca20a191fb91f0275db31df110a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc2868f11f097bac43d948390c01fd645d06319d6e3dd5f45f1c911f1fce069b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71215df6c3cf6fe531d26b8286253343f1ff71d0c7dd5f3c7a05d23cb79e33f9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:73c47718072afe63860a431450c07a2e1b5b75b1789ed9f65afd6b9deb703b6e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:91915b828d446694e9ba4f9af44914ca41dc68c59ba887714d245e0da5a34009_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c9a9a283a831d2d04c0e92ad662c99b1842427c97f83e7eb4d267b5b46f0312d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12ddf9593f5223e96c1ec9b37e05a0cb61cba9119f6f12b24a4c72fa85be5ec1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4f19c2d238b41efcdc8956027fd4a022374b6b7645a0692969a10873b08f0789_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b91a36b15cf1353084d997387dcef7650dd54a514eb9947aa9ade650978e7149_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:faa8690e22f74b4212bac01e63bf45944e0a523029e0613c05dee768c3129621_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3e19a5d44e73d2c6701a31387c6c0edd8894450a6b722a77a199eae343730a73_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:53051fce3f0e47607c9f4e35fad91076733fadfe33520fb394b8f70b3e88bd2d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6c268a6ce321f743a8ea0f5bb793dc474c4e5d0c2f436b169956ffe147c42132_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:7515c0560034250e4ef1da526775084f114a266d4e33c946070605ed1e6cde56_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:156dc31e9ad03b51ad2ce47fc2deb12434fd1dced31aec0aa6938bf96c7f6d1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ef376d3218616b99e21747ca8b463e562ba31eb9448e4eddfe7a36ec9fc83b2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:450937639e0bb7185a3f9df8d28e7aa5c570c26bd7a3c8ad037c4a83e2cc5693_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d874cea66ede957c2474e47a7fb08deb388360aa53daba0c3ef3f57a17894fc4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:21689edeba9956bece4fe1b2ee146c6187d2af2b7b313334ff945ca4e0edcec1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:63acfa9596effe17dc1291337778700c9319151ebe1341d27d9e6a571f6296a8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9c8256a7e21c170f0fca8059e82d71b6b4a7216aec726d70c45daf846bfa2db0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b42413bce95369fbaed3ea8516e691a4beecdee48bcc6589edda43a6c464098d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0360972d9c14a2b9858975da1d39da551f0c8e10d36829bd73d1bd3e15918816_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0dac564d1362197c4072d105ee59692f311d0a09e06676bc5fb0044006d4a942_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ad340be40676ca4973c9e7d0d3aa94538be54ada46c26808d97026c54c834df9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e34c82d9cfcb0465c705a2761d41288e1f3bc5ef102e831009cdaa30a5d4fe3f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:338e3964a689900198a0a7087e6e6e2c3679fcc4166933ccbe671d4eb295a0ae_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:397d2aae3c50e021a5d64f1f9e4d767c5bf0c097f3022f7ae454b2b32997e77d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5af5f5dc361cefe095aaad1f93e13ce3f1e3315911dd18018766b80be7e9cd36_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9f524418c7909e2df88c09548237243386d3d6e0dbce00f2d8418360cb64cc8b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8dfd233966f0fbe83f9f028524dcacc686cc5f12d2e99d5ba32ecf462054567a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a7d4c5c050ab4c389fe8d98753c1612c2957e73d015bb8d4f515ac30017289b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ada6194187305047c3263a8b0c483b06866a2f84fed0dcb07b7b2d8e8a2c3042_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b8cd7cc933f1cac32ce74fa5e69a4592cc5fc6190439e04eafcc7bcce43efc69_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:21b57a0aed29449cb451b253b4094c21b76576bf7786a3d398161c302c3cc1c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51c3d12a2b73834eff5682bfb2b80bb5627493bc5abb7d55625db340be67d717_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c81ae0c0a5f4f3cbc8b385075a8d42e00ee5f55182a23d03f610796c83bb8d26_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fd32abd2fe4d0381436a887cd43aef3201d1a7d51f1344295d06d3b2daa94494_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1c5225aa0a088dbaebdc284df7a8436ce7bd62e844e1bfc6a99b6260e78d2da2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5245f2f5db3313606de65e17482174a6553386578dfab7eb382af712419e2443_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75f5a0f6dd3d2ba6b7d95a7a0980d702b84747ac7630da0ad4d63014544de68a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:76a5cf97ebcc4c8ac2f7eae0be7fc6a940dc967384135b5872cbe7697c238ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:426c1d9bffa2aeb99957d08bd795b82094da5b6f3409dbe5cd042ad6db25c72c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4c3743f3d9c0030ef96bf18f789184b9960e35f6772b876a22a73419bcde1f1f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a39e177f3c4a7f0118cbbf00a7d1fb8f0934dd435ef4e746183ee80b1656e25b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:df30136e7f162a9cf3639d99fd42c3fe0183043e8cf1fd421b01ccbe9faa7866_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:21f747a12daa128f3b7d89f52e4076194a8a7a08c30d8977cfdd63375fcd455c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3865f61557cbe9cfa8c5eb763ef017193507b87e70ac9d5a6c20ede131f406e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5746f7739357dcecb16b91e78aa874f82fe54962d5d4ed03acaa4938033ed5f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a15c4c35f2ae8aa1c0fa7afa55ccb55bc745588114463012fcd7e76824d4f86d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:02dace3f2a09dc3967ef5c42246e3d4532fb5f251c30b0c04c5809aec3cc86f3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3f3f21220b41c0c39f2f77df1d6a80af30f8c58a2a5dcffcaaeea73ded7beb7b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:93c37136e97716c5328bbfc82051151d5740e2db5f818efbaa02e0170b1fd94f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f9fb2f7d8282c837fd06d34ec8141b39eb7746997807e44cc06f18ecfefc0079_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0233265d31477b319132cb0f7a027b3010be560ca3ad67a4adab439b33c1938e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2d7e800a6c20ee615d0ca96645c61f4e3744b3229e1c3418531b31bb357a17a1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:722be0a3167128d8e2bbd0c5b2dcd954ca73eb1d01df50ee42b05f753be99003_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7ad4f60e6067aee5f02a0d9f2a900d8db728ed20c3ca001fbf2a1a0bf53456d1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:16fa1a4808d6f69eb5d090cd10f07f9b35dea31b43704fe1251e29c1e5a49a55_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2d938ae82021e195b1a33438c424f74d693bbdba8b00a19c6c086cff23258f2c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7fc49d1c6595e1543846a5bdcd9beacb550b3464fb6904c6656f77c21dcbe9d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:97e14c008ae7dc4edf7eaaf787a09e5bc05fc0808dda25f73f5f2cd3e5517bfa_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a0cb189ac740fe78a53abc92649b825cfd9e8c3c7cd88d14e933872a9397371_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ba70e52ad446c9f5bc249e42949114e574c0ae2ec97d5939b2f61825ca9abe27_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d1b96ae2ab067150da0aba31e0c8add61bf17bb28c8166e0a62777b7d1f548e3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d8d2c315d3c6bcb2b7a20c09b5ba7ab90149c76082dfb295362372b2af2cbd1c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40101b262cc5908d9de28c98d1ffce004334c70379605852b61e0b42b56fb5ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7aa4420be6c5a39dd935d55072eeb836a540162585500b639137f599ab1b6fac_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:baacc48f3be1c2201fddb9754cfd119d66e45ba6517e4239353a4436a329a60f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ecf763c048ebe999a7879c4896530cef441be2dbadaa808e4c94486bac86543b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:36846a34ced324c0d33fd985a8e7395550446ec729fe3b08f18fca2c73008983_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3787bbcae11c2c8ca5936dd109cd583ce3af5271b04349853f9ec336c54a5c01_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3bb94fe3d6c1e7a91e84d00c757779cce33182350c11f9d71cb244dd489a337a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:899e149766e6a0a8239ef233cf3062e8083daadcfb7b34cb7b22a7ef75e22843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:17ac10707fe4fa65eff583f4efd6136b81556e7858ee3f721d3f57e6daec641d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4f8204e35c7957870d0547cac82a862ec09fcfbf12833ab0a27fbd03f3e0e5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:90a9c77d29cf13b4b191c694d0948e0b0cb4e609dbd2c479b1d1c4831ed5b059_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b7932e1f2f0a447476a856347187a77abeb11b9509d228bb5c50a13827ede7b9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:64a41ef75ea28fb4da17df00a791c9bd837ce6920bb8859acac0dae205d1c1d8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a5b2af663b8b8023dfd5e78a56f663a23ce888cf8ee072540d845bffd0fd42ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a7fb0deadf7a71935939711b897eb92450456b633fb485481b71bd24befda9eb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6bad8290f0947aab08578d9961f0e26e1f27009a774fb8572e748f10e67ce31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3d782f691063fb160e55062756ecf8ba881b0a8ac5294a97562f7294de657aec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74ecc2fbef5c179597f434e4fbb7a37b898f686886385efacf99566055995956_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cf73b8dab9e2db652adae104da45ccbf2bb87cfc50ea045c5fdfd110dd6b6444_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:d2eaa805eeb7bc2ac8a32cd41b231e21c4614eb9ff485b1fcd2f31c15510cb23_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:996bb92bd0afa1a1696975e4b14cf3af886e59493368633cde271552125cf505_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a3c3c4e5aa227dcca6df4bb82f3f95133589fa548658ee5cc121c67b6e9fef26_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b42919d5815bad5b252a9e65374324f7e24e54b8a5c398d1be26e700acc8ec8f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:bdc49dce59b4a500fcd0ef76ff0d4f437035c2c04e4c70d28a6a4c7ffad50398_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1ea358f5af4c06d4c8deee84b22462e8aa99da886562c5bd4710f14aa6df1e0b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3679d52e81474dae5692b94eb61057898d40c5a77c813cdbe459bfab6d3e1eb5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:95e575da2145acddb38131387b47810d35fbf1df5cac8aafb88a214bb12eeb67_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e642284e51b5a1b03dc1fae054ad50c9047bf23d6a4b785af4185e92b3b10d83_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:608f66f5d9b502f4f8c3521c8bf8729096ef9882e3a7c645b312b8a3194686ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:6c04a802d3158b87b4e2a7754bda931747409856d33d5e807d7f90b82963598e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b4bede81f8862e798f8ca32bc18a113bed5b9448201f07c48bea4e7594b2dbe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:81a8d680b545b45fd0a11cd574fd686a455e350873bc18978b2c38652e8bd8ba_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2a53cd756c8727eebb475da6e7026f28a2cfc2e8f25ed70cbcd269149c5a14aa_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:821f03c12fdb5fc77174e8e409788b86b82a12f91438d0cfe3cbf5799a155b44_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e506085be2216a3ae3545cdc5efce8e250aee04446d815b728789ffc5210ffc2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f9b11da18646a793f705217f05a45ef17c28805d0c56ea0bee5d67ffc10e08a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:149c538091c9a03c538060efa51cf971b7a0b9e374b6e7c3daa3509583e29e6d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1781793112815641715e7e3ef0c8898e52dcf841edffcebd00bae64d9c1e63ea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:eb2407d8f53b125fa2820d37f31f21e0b946a2dc8f4f5ab17eac644f654c0a4d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ee213117a5a3b300a0e0d7dff42fd6db48cb7d47fc0f994c6d983729fa39490b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:3e6c31a018342db848a0376d278b7360c455bb615bec10542485fd58ab815295_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:481d9e6826e87dcc918db75bd1dd153ee5022fda219a746d0d26ceea63cd59d9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5872c9e0f8602a8799b669bc69cac8e25a1eb6f399ab4c6770b81873f4fa53c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:be92467a87e5db312e8068787edd9bcbc7bf6225c82cfb2b9b09b4fdb969c598_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0708e8651879653090e55112b191635ad4055139d082ac3d77839744d7cad6cb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:082bbaced10d33066c6e259b3535b196a3994d50e1453eca04b39c4a97ff279c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9b9a6c58ab9d35e2f10f6303e88c8af53f2b724d118f855c75c2aba5f30d0e59_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e4489e29bfec42eabad895d02d65bed1c42fddead50049c8eddd42ebe172aaba_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:293aed2d30e36fba4627a2f348c336f7974c9beac9c463c981ada39c40369f1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:43379ad766bbcce04391235b20b3b11b2e2c6a2c41e827e4348a12123f018a84_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7cfaaa242002903fa965cfef2a152219b98f298342278ede84e6f8a7cfeb7acb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cecbef82fe01b6ebebaedf50b1d771a922db398b4f1d92a08303187fbd6345ef_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:54f61b6022ba1f5c6965c3bc47ffd0ea189254b8875f15a98485c785f34e4d87_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b75a397ecd404aeeaaf9e1a2a6e0c4b1ad88a77d4e2d8dceded37f158015068b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cc258ee0ece658a15d0657822dd694e076886cda1a686061dd3d811c5a9832ce_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d1c2d5850720f65ef5730c4153898c063f8d29e5c412090db8813142181e5a7c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:311eae4cd9489987fde7f8450b56a0dc6362b2d475ceeac3fe9aeb8c03983567_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:43526366cf547e94127ff33d1cbf30fce54c8bffc90dc24823c00317e18021b6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9766368c745070c75195f543183ec4d4c257ea36c0c2167f66d83b2422fe55cb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6b5a9e86f3ccb31c7e54fe44140d90aa1872278acc0a7698dfbad0f4208b652_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:545c65ac5e1f506ad6be67f836d8350d20a60965a464c8fb87c1bc0607293319_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:acc9a0d52c65457a2cfd7a165c317a5a7f3e8272fc300e3ebeab2826d00e67ba_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:be44a9f10cebce2f3f2a7b22f5ad5f7d39459d0d4b12ef77702018481dad2075_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f45d0bd4f4ea0d593ed77805ee1e4f85a1e2075e4e9c3cac17a23f1b806afed2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1ab6168ee7f2708dde588f3401a6d114ba2fd11a73676861637786dd47d72f55_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:421681fc726a36eacff0ebc59bb9b71080561e87bae83bdc31bd39e1e5211561_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:589fe740550899cb3c313a876ba448db0a4274c99a0ce800668e78e57f08efef_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ba693e4a85818bf4222c1fdebcb9bbbb1f5f9fb43a0f0e3599a932adf7b4a365_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:11dc9347576f44bab1ce488f2ca13030044f097a6be3719ff61bfedf7f1ffc46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3f5c1360a0d8435e12f93e2ca1a314abe03492a195d5310fda83de4ede636782_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4fd7c190bb2273b6634c0c68e87520124a1ad1c492f07e53c196c37d61a9c372_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:99dcab3f5526ae91aad1fcddaffece718264717cf230388820925790126c23b3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a24a257e2e71e9b29c2f5eb95fe4cd0e4b6374e5435861898cf4583aa30c9852_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a3535ac00af48c7f28b07ca491bc2130e6b0cbe0a4c6b7b06cc29707aa1a5432_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c7ebfc8870713cf00ca39c55aa528eebf346a99b96c4808c7ed74a5d78ef1676_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:cbd9e2849f604b2e6ff2ad38a70c59c0d661606e67b540b2dc6d60468877f349_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54f964da014ed171b5d086b615958a0e001cf26febd4521c09580c9864b4f7b3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6b295e958a62ac49af935ff8de1eda7b3a9312d09ffefa63f5be9bdd90b0c08f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5679f811b9b3070c5976c80277423d981951e2ce95fd2b71e31294cbf295eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c41a1572ccaac7a5451d3608b7a30dceb0a3a92cc9787727d6e683b14938006d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5d09de814a2b4c2e7f28eb26fc536f196a387ccbbfecf2a4a27bd1da8f038c0b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6958c030639d053bc93ce4af7ed46e6081a9d34a0cdbe450f76fbc8e270807d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:76fad391e68a9ce923205165a733d05f7b4b4b68449e989122332877905fcfbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:bab1639fd6eecb26829e27acdbbae1e3fbc693781dba6c5c084974d16acdd220_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:197e5f3b533497a74ce0263a6b75de5392f030d8966749f1a5e99dbac8af7fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481fb216c8a61573f6332b8517cf27cce7aa992f01a3ab68c75c2276e4990f42_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7692b4102a64ce4b43ab88742aea6524feb5fd1e5bbb1386eaea1fd12cb21727_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:81819d5a29bce73368dc10b0eecd06f71cbd981774aa44a24c26a7d24cd20483_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:22c35faf97bbbd5c2c7f8cdc828aa7bec677b8f65f9f766ccc2afc29f6624841_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c31e9000bcfb8d2bd7497441b7772f27fda882fe2ab33d3aedc3b7ba7baba22d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c81e6f6c01d0e7013079c28bd53a0c22d1d93459befca864d4b246fabe794c88_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-console-rhel9@sha256:fd102fd7252121d031c5aeb9546f40a7818b032b09a1e1bae1a31f31bdb00c36_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:11cf73ffcda1fb6fb1bc7eaf430d321dbf4ed241f5271fd8e229356dd49d785f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:76fdf1f8240fe20ba92eabc038c1af47ee2ca945214ffae69c6f0932026faeec_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:92990e0994ab5cfb6682eb549845d085f02bee5c9468772032ff9371515ce503_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:9e8ed8a0344fd30dcaa819e3829a9605aa1336d8b07dd5b46bf04f503c784ea9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23a6cf76e9fdbf92c66c6a168470fee2a0d311ce7f1679b2ffa154de32a2a888_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:84f70b615a2d5959c6443798d2deb84be916a3679d6aea17e8458a8209caac8d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c03099d3443bc01ff543d958c512eb15b66bdce343478ca8680ef5eb1a41be72_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f507b133dca14555432abe5a51a88d6ae0e5974dc5bff19903ac13616eb89a0d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3b2236953f198d9602b4a2cf63d8a2979f45e9de3006e000ed8cbb58354bd73a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d17f4a0b43681d7e3072b65c0199c0fdd66bddd85934ccc875cce011fb6e071f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:327da686610a648ba22f40125038ba8734367198b509dd3a1165a7f9fb1fc393_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:85c9dd915957525e0857767e69b4497b3ef540a08f5372f2f9d6f74ed5dac518_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4169187dc8305306894e94c90241409943cdbaf8c5d947f1709d7bade207f0c9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:b69e4d677ee5e6c5cce58f2b7f408b8301d768381dc8c91f4853abe056eb9944_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:3df2fd364979d1ee6e8aa002e4bd93b3ecb8f596605025f949b3645cee130172_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4ce8eba1164cbc1266cf39b67f92973d47419d9c4cf1aa4e3ed642b021bac51d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:5a5407dce6b0c7888fb6cd1f0de222fe77948ab90c3ad145d4dc59c5359ebe8c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:602c89173eb3ab93b634c87b6ce73ad02a488b11d1bec01afd77dd249c76423b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:0f226074dac481ebd6e72f8eb78da206eba38302b13e1a8730f88f156587dfff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:23131ccb402be9d5c09ee64f0fc7ab49090520284b8cfb5fe808304a0faf7144_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:282f18d1b7201d18b59c085dc246271798c05c969a9dd8b6869de3329671aa31_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:b6848ff32aaf2c3b26bcc1d0fd44f12113ab40197ca3756891171b784100d675_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:048fb41aa40cd80a6258ae8a98200c97101ba1064750170af0f218561798a153_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:2fd9a56cb088d1db8bd86ab1601204f96590dfbc1af2ccce4aba63bc2561f939_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:536a987f640b3b73544a76bcc746c32e5a2a7c0dbf8c74a4c15e4156fddb4a2e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:bbd20ba633a9f31331e5eb88808e78e23be6adbcff96effabee6c89d13bbda0e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0e3bd669114602c043c9e8ba68e19a9e63434894240a0bd9ab14c47324233fe7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:855921e913f45bc512a2c099ed3293277a324d23a1c040165c1f987420b67f68_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:91e2c02cbd2074a27a798d7e3613290c1aa82e1c1a2892c361afceb7921e627e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:d7c9eb586be608933df051833072e7873fb2473ecc6f21ad2c61403aacaeb476_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b229052c064d75722953c3ae51006c9f5525e315dcd9640287b4e7795910808_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:7e85bcc3e27524956c77694826dc7a08fd02552fcc026f495e020c0b119953f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:912cc76088ec961c651e3771a1c6b9fbe4cfb0bc9cf96c799a09093ac1f141a3_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d5a9d6de513129cc81b6a6d75a28290806feb96edf7e74537c1f20b8d300909_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0ab204d3ffa47cb80f5ea8f5fd29d5cbc73807604c984588d380d329a99b57f5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c018f261bef779d8c03fe14c1d57b5a82e5db022f17a14323044c218e61fe3e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab5542e92d937183de341afe1e37d9f60ac5510bfd58da22579fbe69daeee2f2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d4b03012b938f0c4d4d46a735b27868dab714f3bb853eb73a0918188e7f003d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:05177ef81263ea15d0451619e8dcc52c619fddc5a569f017b7a9b1805b2110dd_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4c4faa4bcb429c96f0afe41e946b98f514dfbce3b01d8e8b1b5c442f502f8085_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:96ba60b36e5041c032ee612cf72ff10bf1a317f0ce7ee74f9b126fd6a7b340be_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b301fd248fb297e8a5653ce1d4c7e6e5df93782b200d47ccc7f30d3f343f438a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:128a81873de665aaa0335c40b029d18afec98e1c89f74d4b826380a04aa4feda_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:352dc29a8bb0541bd0b5293b60f8eeedd937c2b8be3891dd98f70471634fdc6e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:94f4ca87b2c6c70e268c4493d55a130fde30d41cbedcc9acb652c430a5028ad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b919a940a73a8c573a06aa50df6abcf43eacf8b69fa38bec01567fc345fb6dcf_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:34368bd37c3746ac281902dd6beb69dbb2f80eecd300297de3bbacae3b7c6505_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3a92f58164e54b9a85f1c74668a41f816f6a7648f431092cd706d9719a71c9bf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a11fdebc10c3fa83ac1d7cd0d3c2578826e80140bda181437ee49e192beae885_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f65aa88593c55b4cc740e0ba6da64c68a67341318f57bc1335d46d84f5841c01_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:47fca9ffc41dc7603bac9191991212ec76781078f8842f97b98fde98e6f2acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:80c175663348db00775b0a8305c2bf550a618b7c1701ef42c5a2f5c89bd1686d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e1076287e861c83845d9fc0bb55dc69209d1e728320105b80afd7b8f2cebe623_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:eecfa47d0d469c3be4dc48c229991576379bd6a76e4950af86f96484c19f3485_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:02e98912b562977ced4826291d4fb780dfceaab507ff42b9292969cd2a4a3d53_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0dfd2d3b52ff5e4119c42822b853bee75f0261b6fb3c03e1e253e89caa60efa7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:23574a451e7d46b42410225e4dc6695b55e666b230292eeaf29b121a5e51a3d9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:ed6abd72cfc01238226560f542ef0fe9445b84f31968c4e6bcaded20438596f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:192d2dcd32c8f6544e35b5b1a7d835e017b180ebea8a291e443f5dff3b2ed07d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:262c37918cc768ab9cc857ee92d257c5299036d367b45cdd4ca9c0f37b6f2b35_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:86e81287c4657df112279c32e2e2ab767edf04e608dbcf678ac53ef7086c4dbf_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b79df10f00b14b09264e3d875d4221501ca048fc9a50c95c7a4f91eeea909c40_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3df2c5a570c5ce9490befbc5f55bb06371f252ac878b2b4d3b77c64033d9cf60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:82293def243e85b7f2fcd0060399e216ccc8ae72c590da00e244c71e42b960f1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c03f0c2888439c7b0228ef11c18192d5bdb08b6296d53569bb584b1afc75f30c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cec88ffe8af47f29ad5d59ae2b88d5ea453f447582371b0f4d98884b2299417c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5cb3b4b13f0a2b67adb319f292a0f6aff1955e0b0b4248a697b8619a864d9a9a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:7d8cae6895ec5bf4529761ff2c6aae1a80b3d884fece190ee0299bb48d353d50_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:949c03b7ff373f2437d7dc5e52620b90c68409de243e2f0cdd79b4e328805bf9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:abe71da7f0ff4274bfbe9690e0f72c462d3dff9e37f29fc0343469ef01f36859_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:09604ba08a4c212875a7181d127113030b12a2517cb46906ac0d8fa291573188_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:46d3bbf808eca76a4028b4692ec18f797653161ed14921a63283847eac765e2f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7067e530b7f50ec68d234e2bc2d4dade06a6dbaff03bf8c4c9b2a3768ec6a8ab_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c1ef1535daedf99181598d4c4c093fc7537222fba55943caa89366e7c2a55c6b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2750e085dbe006a2431d40a60ac5c913d1841352bda1b29f23ebbcfbbcc92a92_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:317462906f302d70e795ad658107f0bbb0aca82e3c98a37bffba1edaeeacf6da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:366509d3ede580f5a8d5b04fa429bbd3bd330e43044e1e1e87997ac7e69b7f33_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a379bd6a37eb7b808a4902330bbb3dfedb6aba73bed54c7c69c727469a61a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:814ec9f56416bae0ba88a21a0221c922fb19b7be590be860e90c8999db51dfde_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fa15d9de53606e613ebb14fea5693afe3655f5970e2888a697eeec319a2a96fe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a48ca9970c3eae3ad46e5617f36726dfbdcce723f2c000fbceec49e4cebc5b1e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f5825520dc80bc0edd81c41208d9472b6a05794bfc0ddeebae55ff044d16caf3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f86f9bba4c5bfde80d0ee6d99d24e93cfae1ba897740ddd61c635be589fe7ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1a5849dafe54edcf220340bddbb8f27daf5edbc171379751eecec4a09082c223_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b8b784dafb1b06e4102bfdcaa4c41aa401c51d92ebfb74b1272d95f12608a7b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d8f6da15a7cb5e3a33729d9be8fd7c73271aea786d90e1f72387ca6d539df642_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1131ca483eb5e3bf3189add64698d45caf392c979d68d060459f14357d47bf1a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3b900a2d6e1680315c06cb7b17a64845ef2313e8bbe7d25528641a0a8d9346a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dd93c1074d5982e1ff4bde165b3711bcc7bab72a47b800707b2dafe58c77748c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:eec1bb8e6a47bc2740362110d535b59c16d3b653c5dfaba28a33b86fee36e33e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4ed744657a9d8eb2c5bdb064bc14dcd51efb03b93a0094e1e0c91ff3bff355c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:50c6aab86efaf75b7a0bda21f4098a3fe2b25ffcb47dd812e5e55b1db3b46969_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:aadb79ebab0e2894ef5259c83ef59f571bb6b86a2612780e37e04df108905dff_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ec4d165f254b6cad8390d9d39015bb4174e979899a540f8b13235bd825b33903_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4b7e409188bb09b1f0d79840095994a15b54c8caa545655dd10d226d3f40dd23_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:58623c021911ab6e0f1cc5b3a8ad8797ad01a1f488990a2d9e672f22b1ef3a5c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fd07b396f5123714df6f42fe1e39fa3720105298d3f030c8c35dedcee1669228_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe52208f777aec6161c011441035b061411c1422fdb61620de8cce2f207c2ab7_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0751f2af3f736770d2dec757f02076d32913740b1c3067c4d457193e32bb10c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:999d34691b7cb68b5a93b9c13757bb57114e521dc30364539b9a17f93841e4d8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:21bc3327c154861b9a6850b128b2b5e8b3874a47d91db8ae43c9829f5fcd40f5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:503b41aa6e4cbecd1702ef8c9576755aa5552095e6f6ef3321aaa01aa58d639a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e5d9c23a86307e87c7ec853c432b1e1a01fa105fb029bf8299daec0e2b62710e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fb408e868e651609c5da7e3e128a3b28cd5712c9beaed1e0fd569d24e7f3f83d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:220cc4bfac647af2b9140416246529bed97fd1a8b21ac612ed9231eacdb5390c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:49243159214b50187a3d4f80ce104329120d28598a049531efa913d97260c98b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6c00eadb2efc88227c87c3b9003e61b79bee4eb55e1b1eef75b46eef6d65837_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8c79ab6e062621224f60a8f3e4762b8b2fb83673061b8ee9005b121e1464f2a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:f835d414f62d18389d4fa397df22dd6f4a25a0be2837faafa0be874fdd768026_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:32a882c451f9f86c21962ed0f0a662baca89625fe2b0a94ee2c17cb9ffd22866_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9bff142c21e50e54897402d262acfb25d6ed915d74e28e22972d860d1732e077_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:02fafe5d0909f916a1952bd9c8db93067e4fc937e984a6ce6661a553ab45e47a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:4e59936e200f74378474e0878d832419ea2e64773bd7603d63472d987d1a5327_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74333205a5c178bfbd1da4b70bdef9fcbc8b2cdbcaa6c1652ffaaf4c81f1e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b67b6cdcecddf639a003b0440dfb1b3691bdd9cbd0b6ec36bd54e48b6b6e7f8b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0f70b44a42c9150838081ff2993ba113eb8159807b3a48c26565f03cc298ff67_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a56b4c8ef40d5269052a80e99b080b3fdbc41d7d584c9be584c76855c98dda_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:546db79b6732002f1fc5d494951440c17c6e54b97e3c6dfcdffb957e6fe305d6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b391c1d6215c2800543b192b3d835d20113fea55cb7b2280beecbe5b1bfea132_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:43932a53b3caeb255ee7053c7c7d2c4f41d34f4c5bfa6c82fc97c81b9d6521dd_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a844ba2f5e0a9d005e30b87241be3dd331b02587808ea290d14fa0179352b6e6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:aa1c1f81919afa42c6fdd42e76b4a0671c168a575213697a8025d8f270cce874_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dbfd662fa1a535af9bafbf2b471635475af4ed39aa3180fdfe99052ccae6e02f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f18d52da4d55d74367c99e78e34c1efb1d58d14a32cd40cb194892d081849ce_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:98227ea6559047bae5c8f8720cbee3d52312d4c434dc9e5ef31a1ec149921a1c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a47094323452006a8e88cf0ea7fb8a4c183b43ee1dbc7555fc066a1def013ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c07d50c7453e13c3a5fa878e68aac37de921a19497e997d75bfabe3c3e15d0f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:05a480a2c03c1466d3b95161c98419b890c78e76b3c90bf4ed76afe8529fcb14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f46ffb27d3336812ee3f856f065d81380423f67637dc6fa0d7f5fdd30ac22845_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ae7bf4fdd7c5503f91dcf41d8c206dd6c463f2d4ec2c7fa7589e62b50efb67d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c73f22e5d2fa2137f29cd3d71e0af2a88c8780ff0b19154dbfcf24b6d3b3fad0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1ac47d7f8764502b7765f66d7143f61c6685a0b9204b53fd0c9add160128ab21_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:df5f7d7e47949a8319138dc2186f6ad584cdce166ff169083610394fc80b2276_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:68612d291556006ee85ce004492b89dc94a214274030a9e705b0d25f980ce843_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ef35e4f930fb1a3cef199254c8c1623abc926d06dbc1bc2e418340294cc4a1be_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:444c1854354d55ccc6b727d3cde0812f31ea15e6824317e79c02119a62b211ac_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:a0fa376a2b45a2aa3695c8836ba9b7e53f5b3c5746afdb4209a07f9a04980a35_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:ba2468ae06a0bdbb0603ae8b6f91d2557be21c41c701f2e99f0e8408e2e95fc1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:d5ca19820a9fadf556218184865750553035c607d7a8fc24c867cb804ef37789_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2a6d5a787018cf16dc0ef82621a03bc72aefd352730000d8d2a65e89d6f12e69_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:630ca69fd58548274bdd077eb8218ac794fc1ca514e5c14f27dfd92afb225c91_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:abceeab43c62b27e31e7fe1feb87bf00e73f59054e06f31261c80dd8b5eb96a1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:dcdcc7c83fee8395c83f11f68ddc5b8e1f16a986c412b5fccd63a0fd4c187169_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0fb374e7b3e4d15e1544d481a47a91a431cc14dc288237cce52da85c728851a8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:696b023c5036cf87820cac041d9d11ee3fb262129d7ba6b0e3508591f655afc0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e9f6150b29a6ebc4afc8880fc7136deb1eb744a2e9328c371e961f4326b15172_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f2509cf110f6e2f49441e02f7b6b15ba0c5c99bab957bdaf16b3acd2e6ce6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:95c58092c8ddfacd9853d742a48c72e8e52fa9cbea5af07d60d9c1a7227333d2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af4d13f53cc1d936fce247d6f02a9114ca7cdfdb7659c4b16e8634cc72be11f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f8639dd6ea66bf2337b71857bdaf04b65ec61fee01c47f1286be5ab8f2094083_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fc73897f8306c04c7ee1e086fea6140aa1ddc68d86fc620255bfe869841eb6b2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2633096129e7765ba7cbbfba9d6d2ce96e6afbe4cecfd801b1457169f658155c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3965e3f428cc22342f189ba7ebef4b37a912e6028a02f87aa8d1353b1aa7dfc9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:546fd191f17566bbfe858e4e23c34f75cc14d18bfdf955a8b2648b8363ddc133_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a6acc0b6f5abbf9b3a23697edc8fcee81eb683ebf26f5d65a64e3b6e4a3ba71d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:031601d3edf9d8cf974c082dceb81f362b498ceeb7eb360de8eeed199d2d969d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0b90752a7049e2abfee9db9dc6f5821b94a06119988a6085e8bc3aca678cb1c3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:474a3ade7c8487810d0574f6645befc5b3b5946b3418500c15618885e1c7c99a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5bb076e04d2ed9b2912003348158c3d080971fd243076c325efee61d87e2a3b6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36adc3544534168c8f2d554ec15d4922d3500a67660b11cc60d56cbee17ca9d1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6f7008c1efcdecd2f4e4b73d7cac1d5b967429bc8904d6cd15a1e0912a5e5a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8928e619ce9448b7f7167388239bd9a1b33ef8c397ad9d41c82fe07df7c0e246_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:da6338c995d4c809d25a8212c8aaa240b3758c991c3bf513bfe88ad4e25a5b14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:313d47344c7fb4fc543b79adb3cb102438034c55fcf5101d05b068e6d93a411b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:634393136369227b43a608b984ff6b7c774f49794a1f22b3d3cc2cefaa050e2e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ddbda4e7a0624908c8fd39997e62c556295b12cef6ccdc43bb3189cf61ed63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f2444966e7ee96757f236bfd2081e25e806edf4533c22c46588796b740d8c099_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:30aef8005beb3a7297e62d92a7583466f924528f871b8f117c54969753980f14_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:92496c6e5b4b6ae64cc0096d98e0e84d673051277adce3b17dc56b4ebe0b28e9_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7a8eea81cc27c7aac1294ba5e4b4869cc8249bd1ccecc4c707de062e3b01b9f8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7d2c00871c1ccb738d7a5c7490d006e09c5d836ae13c9df9572f0551e0ac6b4d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:2623eba6bd3a42977567aa927293200ab1ea2c304e40e2ad5b4ef51c2bacf41f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ca48a7dc332e3ed0b89ff38bce9342667d172b258109bffb8633115819d8765b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e70e5c290855e866d0cd888b1ca874aa18bd13dc6b510c1651397eeb31e12619_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:4801285f80eabea12dbeb9a3033faa1119050b4828d1a3bb45700436e37b6aee_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:97bc167491808b2ced15073c98786fa8ec1750d9b8d4a159589032a2dd6c41d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:db05faeb9ecf4a097a13c128b157bdb02bb9e0e92ff588d1766878ba7059f88a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f620362e624e667c54ef47210859d483fb1e284d1f218ba42898ac8b2c328c07_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3d931142944e73ea9adddf64717c683b5c1c6dd273e13a8571d1384c916e4f60_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ec76b414f5ed89ac3d06bd127accdaf0958717e46501176516a3bd33e087f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b8fdbfe9d92d0c81b1944d9540bf4b9d0eb91f7680d084471f882ea7f848c470_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eeb5cf319d4a272d05bb5fdd4a17850c6460ba7efe193db686fa92df1764902b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:345236ee66355565558746bbd22fb92db093912e233edaf979a542ebcbd28bb2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4b6b15a1c7679854f2749fcc23a3cfcd10b9689359eda3ed54cb7a7ac112b085_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9cc7b1e47fc4b5a4beb18c77b9f1eddbd080ee329b43ed6159b179b6c3df303a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbc9dbfa8f385817ae23632980ac9d6598b2af065e9a5651bcc9439f3e22b35d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1997dbd70a56ac620b50adf0cfcffca02a74d4ea1cd723a3e5d2fa38cd724d0d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:24e156eff248d01d1d070eeae429457ab04219061bc9dabe15590f99c7ce7d5b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a9064e80c675c1838943b887cc279d5f38b75ad90642679f649906d061ceec5_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ad1ce91fa292a24d1364d79942590098f48580f2b8d3a7dc233fba210564e584_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6b86bb09095df44af0b5e8a2ae0573de4e24880b8085e51758c0ffddfbe485ec_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:86d8ef70a819c964d8a1fbab18ac75917e07fe5191d2d76b35ca99bfb7fb6d86_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad507e6c56933296ef93fa4e9a656e6a730878d2513ef898823c91c5d6225591_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b9d70fb1d96731eb2a9e70a6f66477ab022e38873522e0f8c70f1b282981f73e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5a553ebeca58c331af6fd5c0015731b9a4a2e2b02cf08e2486e32d75db4c3512_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98257c056bc9c0eef6278f4a641e8f414d38ac5f532001ff28c2fd8e7b10b7fc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9e147aa64b5c97101bca219a85d23a8e6973f3da3d630ebc70808fb2d0229ba0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d374a169a8326e93a3a1b65234a1a70dc61f1626c510401dd18df13e37757fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:470aeb7a9d762a517fd5656d811b6d118f5c110670fde46ee543aeb7c755603f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bbc4cc16ebe7362844eafee74c21cc7492492b707c9a3f396b0d9e6b91109c1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b838b4345d629bfe1d4937c3b81ea869e3a3be4ac2eefb455a9ab340c0c00445_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c5e4776e52a41d86fee6940f32fd5026742aeccb8d1ad25e3b41e526d13757cd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4352717d183dfd89233ff7c36e17f40d65edde13a298a8cbae50a61f458de6e1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4359b7acd9328adb59e481de878461e225c56a1fbdc428ffbd7c246ff5a6c6a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e441f36b060086c7323df192b7d33a772bb2b94cf9d781f34f742cb8e6f8079a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fefc5c7b8c2b40dcb3e86a32d09b93c0e748823cc57bf2b8ebaadd3f4df25eca_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9131f8cc7bd13cbd3e46ea671e7d4f56b0804b4d19b6b352683cb0c9e5edd84d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b55d391b68cf46d1c935dcf2df93af62c269eb65889d673b9517a8d43cfe937e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cd4710958cddf99cd23e51d11ca7469b6fa6e7a9fe91762d3328d99e824b9aaf_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f7ae60a8fffe4830a618cd3f80c5f530f5aa2c0bcb1c105f6cb5bae37483cf1b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76ab699ca01309d81923c0ba8388cd2861c0310312b027d4a066213d5a4eaedb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:80de2048abc03034c500f9a6800895952151448553e22919dc4755226145a544_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:92639bedda04e4dac1fd7fca81b964c6b215f86256b0878d25c5b356cc554816_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c04dfcb2242da50760d7314dd81cc60366e30d4ddc9c80f4a6e7beded45a499a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:59c41b2f9f57697c9c6101b96525e34946c6de0da6c670231cdade1aa777926d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:9597ba66026899542a225bd77b661dd982a18c039f563ae285c61bc949e2c038_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd9a5d4d4fcd09385272ef2b6c83fbde760f9d441c668ad72b6181e21a6f54f4_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d520c7cc78dfe7c00e0702a008e535fd4fa7161d08f28f53d273fa79c593b213_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4d2da754e75ce0d38ed00bbd33ff9e954dff807b06a53f2f900273cd8213da0f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:6963b9f2b70d23934e9724066d061119342862ac6097df3075abef5010373834_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:9be27c7b2b3bc3127acb0b829512588068a4fabc1528de27623f3e30ae525f88_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e9ff7cd97540bb99d0a15463d7777c2ead03d3e6dfd743961804c0bfddfae062_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3886d9eea4efcdf70f5dde4feef5f0a4caf71f5d6efa5b4e0576fec4a510ed9b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5415b90a3f8ad10ea67fe469086641ff6cd22dbc88bf11bf2d236b7b5deadfe7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:955edfd7e6dcba1b9edf039c9b1258ce04541922743653d60be8223e42bed4e0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b23ef002a1538a045fefb050b524658e352cdcafed16333e14c082f20cc010b0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5bc08a598f9382bf115e4c5fa200434ba77580ed2def64b5a06f75f193cdd090_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8acbef111de0420d7acb11eee8d189c21e78fea1574f0992f145f969cc6989e3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:993217f8b26f92ff9e10735c44a5c6b9b58801dd1b50893523bcb1570374c438_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bd3b8c746571a47c702859e903542d4c7546ccd5de82dfdfece9ec599b523bb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:294a3331ea749e719b08c2ad610b05088a8bbd267e51402553fde973eb892244_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7a692d71111b06c7c73f32529f372d99f032874fa500d8a6aa087783ff438696_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b19fd0a5114f73731cb95d91d744f8c92757eb97a9e3c2d037cc1e160c519604_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fe78f1eb8fc20b783e03211908b47da3de1c86cd96474b7366c7d61c31d4d22e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f49ac5f69160cfbb90a21cd385ccd129395790d3ba011627eeb9f193bf0eca92_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:6508485a1ef2b939f4ec05c985c843a0faed84aac72a88da32d030ed61400f5f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2c05481a0699e2abd48d0920cf0a766771c30a3ee8432d68989b340c6ab9cf74_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3e07105be3fcfdcaebb443c06b122793933667bb25e23d1427aa38b1e989f961_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:69ddbeda1e87484f4f33447cf52dff18a0b10873265384e4c209b9fdac8dc74d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:775c2f4e6a729a27986f53e158cd7c9bc52cd2d1270ee33fdbea2e89e6fec2f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:105da17a3e25572f01ebb76ef374f99d74f6628fa71b61e29b4896447441865a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:33556d21117c79bb98f753575198e9b5dbe86fd887181452096949c239843491_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8bb7a94fc3fef759351de399f76010eafe0b407091179d7d4e7cc830f499c2c0_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b41d1b795c6bc8d08e04caf7bd85dd091138526145f8de914881b7dda85115ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1bffa9c2b38453e74771f91222d82785bcb1bbe81db461705fdc057d86864065_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2cd9d33e2d6d01fb3a2373d8184ac345909f6cf8cb651f804aac73a662966202_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3c88420e9c963a94dbb177e43e61a657d710227e46110db62251e0214b51c8de_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5463fc6a8f4106a6009eef7218e2e38e78115d5d13994e3388ea1a0a810b2dda_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:185a471d85acc070ae3992c92abd1abdc2993f972904eba2490116be32fc1cf1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:3b107e2f78956ef44226ade55b59f51ecba40fc9d1fba526cb0071baac90da0c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:7f77601e58f450c35ea079dbe7f166532a13015c181f92ebc1ba2096cbe7780c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:accc9f25dd92b3a28136aad8a37c2a4231845cd7e5cc3eb0b94982e77e14ca49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5b1aa18b649d871b716fa988d108a4cabf926be25c21de946be9d4a1c49a5f47_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7ff3299048ec1b2d230afaf0fa56a34bc08fbf4bd976d2b40f48a5bb7d3335ce_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:eb53a854ec71115c5acfcf05a83a18fdc7a480ea9b2f4d1a5ae6a51c6937631d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:fe2c5fc3bb0933d08b827a97c530723db190683a5be5653fc18409f9b6077959_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:4d296a0933151ba29a8cd6302a15eb71f7faa2d8e1e265ae045bd041312498cb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:5c2e1acb31eae466d14eaae6ae577e6a91b8c1f9652fa2620d8502d815391006_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:b534f12987c47bf1507712349a6ee290540afb6234b0f7307500d43082cae49a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-olm-rukpak-rhel9@sha256:ee2f890e0165f7cb507386b8190dc513e31af0ea0c857a82fbbb0f0b6f7c88ef_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2e354bf117a949eea74857e9a759612802018c28f821cb7ed2110d3b95fc4cfc_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa9e6e65e0490749d5e9cbc1ebc0185291894ac6385046e584ab8feaff95e883_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c92ccd8046e9165c0d37da6a189b7e4474c7cc85a62d3a30ea3c239978987b86_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:dce3bc62c1ccb4d01b7b9c143d7b8c8ad122aa64496c093fed55e5f269df783e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2f7d5a377fa2c414224a370d7b352b674d17637e16c88b317a324766bf7ec4a3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:35ce34226a97cdca135b557efd83a97679bf15e6fff8517637188116e65c90b5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5c81190dcb56f071fdeb408da79f0f9b4ba125a1d1ee9e0e9b64e7e617667c91_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c48445d7ecbac91ff57021d816ce5b95791b0ce0b4651c45c879e7318d20a6cb_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:112c8ecd7d77fcc978e06a5f23e83ee02955596b71700b49084e920036ab5b80_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:36758ec998620843a8147b84464011b3f42ea81f049f39698f0966525339377f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:846c8c92569b5db5c37903e8655df93227abc65c9c024801c1e533863e6ec76f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ea51a884a2fd711fc52787c8aaca2aac627aa10828268e99c3c0a4aa38d77710_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6d8b7e5005e24a2e31bda3ea47727f7c5564038db6bd3d9ae641bc43467957a1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b06f6e0f0cd0f34b0366ee8dbd8a21f3e701aa567335381aad9e95cdcb21735_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:d92a07037d1f8f0d3388865029fcbf47c9cf23e64c7b12934ccee3565c63282b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ed6856dc0bbf6a6280a6ebff11e789c82bc24bee10c355628f6a5d4de0ba3cd2_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1be01a3f2886af04601a16af07797c7c67d18a3cb921f30c4138abaf1830b75d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:3d92f39fc0fea26f79191050506a69ba6700f63b3533a676b074f3c6aa84ef08_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5ddb2f8ed1037fffe5f3f98c0a3b9fbbaa69b4bb22f8013354f0a6bd305f5ac5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82093bef235de3d3a85f50ee9ab04a38468dcfeec8e394666bf9c37e1fba3587_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:99b9ca76ed5e77f696945576e65c50a8a5a6b749779e09c0fa3e942a5e54f23e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c1c8406799f434fdfab1296ee5036f60ef96072732796395860d75f3acd3c345_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f4fb1dd1afd59ea3a296bfd2509da0829d86b89a33036fb6a81cc14e020172c1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f762406e31e543b4eff3efb3031c68f5ab4c5bf8e808f8fe9f27f80f66eb5f16_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:12bfe67932feeb96b371f95f19e8c9587feb87c13d9cbd5d756c8919d717e5a4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:891713b11933b94913db74d18780d3438c433d53f0268b8930010119a70d22ac_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:aff94e596465f4ac868ec676b43fafd264ebce84eea62f46749e5b559b0a316a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8a2e0223127bf1180f63c5323bdaca68b1edde30f1e6affd1fd413b97bbaff1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:549c00c04818eec58643de534f76ac471d767662a060c46c92c54705cf22a21e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9d659a18e9b2553df4a2adb753605b415b0831ebfb5c9058e19ac0013886b96b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f232805d2884b7ac36631cf595293f02c8f4035c1495556796e723e63078af7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:9f3f9fb7f98484d806031915db1b42727ef6913cd9eb870ec077a9c5e37b4923_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aba6f51380ca934fd76413034b8b5be0bc7db71c0ff81bb4dba208ecddec96f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:30eacab59069ee19c89c87bd963f746c98536b982d33a5287a1dc28ed8520b2b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:6349f84eb87950b6788aaea206a8c4f8658b5fe3fa1fa1c7f45e9bfea90765a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d7af6eb0330b57252df99796976c94070e4ea969ba58ee6244e48a4e71b961d5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e4e1669e0319554ef89813479803385996c18156f9ccf9c34e9bd33b1826573_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a7acc04a4f7b7327833c3a0ad27e3def6992852c714b46fe706766b8fd8f200f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d32ed21a279ba80006424124eb1fe26cd4aecac0dfa4d022da331e43abd96e7a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbe2572fbe8794ffcd051ba5351ac8424a95ca9976cf753dc883ba865ededbba_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:74a869c904634d4ea1ad236ec23adccca52ddc6719a5161ca9621f7d6826928f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc89340e0f463c95466b4ac53da02967635f6b097c0ef4b06a92bd89376c6a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ed17f0fb9c2215fa47dd35f95e8ec01e7ca5c90352b9c28e38a9f2427b7b414b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fef58f1efe76289882c743f2fab6e362e28bf7d0103d2d6f64c41ce126876fd1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:89db4ce1efc13176140cd3db942006736a6fba72bdd74f6ff566a848e7ccee39_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a84b47be276e959080effbae790a1965e24c17e20c287f9bf6fc08e1591384d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f2e60ec72cfe9e4efd2e2c0f9178eba8134787318967a445127e91ea1c0cc4b_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:de7cffe97a88e4da51a4fc5194a2c574337311bd6d6e80dafcd32c1518255c49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:516e6c2e174384c482c4ec8f01f837ba523688bcf09bcf67d1dfe7d56fd53799_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6cf70f67f260b245966f50dcc6cfe3f981b6dcd68af5818397cbc89499b0ccb4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e833f2c1c7709dbaf5aabfc96ff415a35951ac23dd22c84609abe0ff97fbc3b9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f7248e3af63cb06b54ca81dfd1b5d9b0f78308094bc17fd924a09e36aebbb102_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0d518c0f22cf55f4992a53bdb51048eadf5be98dfe1b1ce19e9d54dbba949939_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5bf0f1d4484662c99863e12560ba686b44bb48baf3fc467a070a30faab4b64b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a19a877c2a3f328b1d743e3601ea49d4dfe4d7e1caa396844dbcc18c85189256_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f1a7a4590290de94588b9b3b170952cfdd1bcf47bf13d484b8d69256c3a57694_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:80d3caf9a0080231c9b5dfaed384fe7bc6844f9b34bee3c6815a657cfed75367_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a4a9303e00ba808bcecdac7f1c6e4cc247fbdf2fed45a5a11dca0647c8efa742_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:3495eab5971f35a929ab371b9fa0cee92d13f181e33fffb5da1aec9421157a19_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:87935d5137b95c595cb742d1068a321c983a452d27129472eea67b9833a6c524_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:35d95470764a227874c5f2f699675e950e65da173a6ba901d869d98233e21ee4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97f49c3bb86198d0c0f58505ae8b5227128b20defe5756c89abe81a3f5836508_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:51b52f292fa52d422c8edf31366a18797ed439e39841f6ab08516514d46c3d3f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b4f788054d58252f1133f3917b090622fec47358e81ae5dd84cebfb3ab35803b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:03b6f25a8619f89fbdfcd5c2d155eb4ce859f94c966a8fb9df24d25eab9163b0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44c4c8cd88f3a5a29717041b9be08fe5618e14e094a5d58bf06c7b4410238337_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6188ac648098d4bcb76671aef4f486300d337b41702d2e4d33befe9295159f5a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:650ef9d351a97b6969355dfb0a5d4fca14a52402b2d22a965990c8fc80b36900_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:819b7a3d5d8bd5469f184fc0800d01c5c4d4eba919315f7c5835e50816349142_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a3267d296ee0f87036acc71f5e41cefeb4b53cce250ad30047103a2d41d5bbc5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:a5d133fe715f18ae362e1faf18c039e4fc57bd88ebb37374602aeeb4e980c5a9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f9f4a4c95468d8282e8c187de9306241874542008a2f6390cde2dc70efb6be57_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:902ae9538a237d17ae1e219e14d4649b1d5b27106a1491207a9bd3dcabfca210_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:da4b8154eecf8931ecdcac74af3db2574f3bd47675b0ec38bd3296d62ae0e2f9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e53ac9c2dc3ccf07bebcf0f7ed05986e72518c8367cbb442dbc043504978b90e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ef1576f064eb1685a0a4357b6a278fe1c54891035e2fdb7ea1fb55b8d660a1f6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:57a2753800bdea1f0ee5fa2bd335e9b7744abea826920e957f1105bfbb0a34e9_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc6f4713fe215465d3e3ca83393d05c617c0ec39baf7503add25d0dcf94f762_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:da2dc165261b35b660bcaa1506b16406e006b2e7ca2b755005a579083addcf89_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6c8a6834a5f42528a82b381b2217c8ba4ff4de025688183da50eff829b2a3f7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:07dad110ce45cecffe87bf5a6f2656304e95a8add8d29c93c14750ccd0eef69d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5d054749eed2013694d191346feb3a9ae226ab9141438497f0ba6bb3066fbe11_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8e31e200177040608d1b3333d1eaf49b8193d94f22f82575e16eb2a7dc1b56d7_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c75168a5eeddd272ee78d707a8de01585d9815be8bd94ad33f93247e49669fdb_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:02c988604b7d8024c6968214183e6f7519577eb3b6f2ce19dc048db52efa0b70_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:33c44b04fa00972b9f379aa8074c88f62a15817c4cfe7c5154bcedf1616325c6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:41d70deb2739e42de517deb9b1cb74262957286181b90cb30d89f4ead48f82fb_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ae1d08effed8b0d48ee608f72c44006b00bd26d568fac0d889b1a9a2f1d95ab0_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ae24a6fd07acd6127fc164c6798290a00f90cbd46f9be862920061ce27b19b89_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c65c859ce455a4bc6a27f6a2b60296d93d7f6ded0771d665bc6532a65e11699d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dbb3e364614f004f054934eb631606ac7613a2966565e10eccff1995f538513c_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dfec55bd7cdf2cfec06d62a4e168406afe50abba4372d9e6a41904a82de7d22b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:7e719f58f3a2a3967440482da347950cdd8f06a580637a45b78473f7b67036ce_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:adc55a6d1337e804e08c3c5a8dfdc55f658b3c6fafbc7fbd92dcaee031fc9b28_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:db07208fafc1e4ffb8c1af1f20f47dbca1deeaaa3149d6dba1a4fae8259d7f62_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:fb41b1382abf543b853735a5ecaa845b5b109f2fbfc73b5c05db802ab07454fd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5cbbae20c38a36f48f027fd5800dd8976e57731398c9a8983f078dc53e9fc493_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:6e790f635565ff6cf582a0230ccc0fd47b72e8a4de1f58c12a01a7b9b4c0e8d1_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ab6411bd29e341433cdc80d760310f3963a7547eb33fda70dd62244ae04e10bf_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dfd87e0046ac8ed8f857d0f524f4dde0000e20218f1ef94d413c51576fb7fe4f_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:201b665033e4b6a00d4cefd81aeebe74c0c6b70b73a67fbdc666c3dd933b2afd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:79919b39c769618999e19e31cb9c131a7edccdbda3550d6e3e52182c251ce2d8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9d08237a77aab0c4d6854b597db066f09a352635054cbf6f9dc0446762143252_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c891b009952d22f69c2a261a8518d6438709260102e3ab370ba51de2bf6508aa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:55ba5839ee1f5d88df667a299b6ce7bccc0c96aefcf8003250df71072798bc9c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6ec5ef594b88b4b39605f076918c294a01d082ddf7bb8388476b9ad5ab63ae87_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d98e2d148cfb781049458d6ffc1c0f1d3a8e2674ae0c08bf7d837e73ebac74b4_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e6402d8901482edef00cd64703491f78cd315369fccfba3fe292b4196b525a78_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2cacdd6a5a9eb31c04f17bc45347563f1410430e681aad82f1df4f2d6470dd46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79ef92dccdd6172e343f781db4fe966433466f0967a0030511519912c95b520c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7fcc45761bf71db78d0f863fa6f571733c84a6e7ef1bab1f64db548029a5a96b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd573bee41bcbe9bc01e8e8dea43fb947f5c34b480e1cfb60106bb848706a4af_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:287e2fbe91bbf76d2d4cf1cc87e9cc840892e4713e077ff46c4dd9d7b1c6a702_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:968c3a1befc5c23a411c4975df858bc442075d758c2f24e55ea50b3046c7e511_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d16170575d4b96efe953e0458894c4a613188b6e77e7d3e7631bb1d35de919e8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ea4c0d098da066121489a43092df4e9357bff05f59a61a938ec4eba989d8940a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:60839a0246a5226aacb2943d89168584383a758c67ae2bfe97b0817e9a1175da_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:77edf1e9ef06f060e35b333ba38e6c2e92ca1ac60a02e488a597780b4d18a714_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:b65e0114652dcd5c32f6468ca2d17fd637c9ec33ef5721729d2002242e596d4b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:53d5e956b2d0f6b657e0ed317521c318a4999cd51539d039157674c2a5af165f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:2f6688ee9eedb3ea6a240931a62b28adcde950d3270a567c0250470bba06e090_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:e3d44744eb2382338da85497338c6f77735195d0a2a14352c34c3ed1f7cd57e2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d8f3633fe5626a2147f422153cb525ea63644efa947b6614fa80b48b62f9796_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:649d4cab1c49c219992de8cd938c9ccc5731ce8f439d9e2c7fdb92b16df207c4_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8040c5ac4f9a9c5e9787d11f6ec83265764561a19279bfbf042dba2559c7b26b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:cca5e3c8bdee099f11cc00a2790f1a9d91c000701b240cd91dd3e6848ea07073_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0a373a830cec20cf0850875505856469627fc212f83762fcc2c3f801f2272206_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1a70f3e42db53fd8fd8c36303c8af0bea049fb9eaa33833c1521641b5eeb2bf2_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:40843a637d60014c9de5e8fb2d25ac7a6fa60a95af155f05ca963c136287fa77_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ba7ec4c3022e59a2d20ca460538a5c5d8e506f33b35b2f638f08378b15f57429_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/distribution/distribution: Distribution: Information disclosure via stale references after content deletion"
}
]
}
RHSA-2026:25127
Vulnerability from csaf_redhat - Published: 2026-06-10 20:51 - Updated: 2026-06-29 18:45A local privilege escalation vulnerability has been discovered in containerd. This vulnerability is the result of an overly broad default permission which allows local users on the host to potentially access the metadata store, the content store and the contents of Kubernetes local volumes. The contents of volumes might include setuid binaries, which could allow a local user on the host to elevate privileges on the host.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le | — |
Workaround
|
A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64 | — |
Workaround
|
A flaw was found in the archive/zip package in the Go standard library. A super-linear file name indexing algorithm is used in the first time a file in an archive is opened. A crafted zip archive containing a specific arrangement of file names can cause an excessive CPU and memory consumption. A Go application processing a malicious archive can become unresponsive or crash, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le | — |
Workaround
|
A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64 | — |
A flaw was found in the crypto/tls component. This vulnerability occurs during Transport Layer Security (TLS) session resumption when certificate authority (CA) settings are modified between the initial and resumed handshakes. An attacker could exploit this to bypass certificate validation, allowing a client or server to establish a connection that should have been rejected. This could lead to an authentication bypass under specific conditions.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le | — |
Multiple CoreDNS server implementations (gRPC, HTTPS, and HTTP/3) lack critical resource-limiting controls. An unauthenticated remote attacker can exhaust memory and degrade or crash the server by opening many concurrent connections, streams, or sending oversized request bodies. The issue is similar in nature to CVE-2025-47950 (QUIC DoS) but affects additional server types that do not enforce connection limits, stream limits, or message size constraints.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le | — |
Workaround
|
urllib3 is an HTTP client library for Python. urllib3's streaming API is designed for the efficient handling of large HTTP responses by reading the content in chunks, rather than loading the entire response body into memory at once. urllib3 can perform decoding or decompression based on the HTTP `Content-Encoding` header (e.g., `gzip`, `deflate`, `br`, or `zstd`). When using the streaming API, the library decompresses only the necessary bytes, enabling partial content consumption. Starting in version 1.22 and prior to version 2.6.3, for HTTP redirect responses, the library would read the entire response body to drain the connection and decompress the content unnecessarily. This decompression occurred even before any read methods were called, and configured read limits did not restrict the amount of decompressed data. As a result, there was no safeguard against decompression bombs. A malicious server could exploit this to trigger excessive resource consumption on the client. Applications and libraries are affected when they stream content from untrusted sources by setting `preload_content=False` when they do not disable redirects. Users should upgrade to at least urllib3 v2.6.3, in which the library does not decode content of redirect responses when `preload_content=False`. If upgrading is not immediately possible, disable redirects by setting `redirect=False` for requests to untrusted source.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64 | — |
The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le | — |
Workaround
|
A flaw was found in CoreDNS, a DNS server that uses a chain of plugins. This logical vulnerability allows an attacker to bypass DNS access controls. The issue occurs because security plugins, such as 'acl', are evaluated before the 'rewrite' plugin, creating a Time-of-Check Time-of-Use (TOCTOU) flaw. This flaw enables an attacker to circumvent intended access restrictions.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le | — |
Workaround
|
A flaw was found in CoreDNS, a DNS server that chains plugins. A remote attacker can exploit this flaw by sending specially crafted DNS queries. This vulnerability exists in CoreDNS's loop detection plugin due to the use of a predictable pseudo-random number generator (PRNG) for generating a secret query name. Successful exploitation can lead to a denial of service (DoS) by crashing the DNS server.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le | — |
Workaround
|
A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le | — |
A flaw was found in CoreDNS, a DNS server that chains plugins. A remote, unauthenticated attacker can exploit this vulnerability by repeatedly sending oversized DNS-over-HTTPS (DoH) GET requests. The GET path, unlike the POST path, lacks size validation before processing large `dns=` query parameter values. This can lead to high CPU usage, significant memory allocations, and increased garbage collection, resulting in a Denial of Service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le | — |
Workaround
|
A flaw was found in CoreDNS. An unauthenticated network attacker can exploit incorrect handling of TSIG (Transaction Signature) authentication in the gRPC, QUIC, DoH (DNS over HTTPS), and DoH3 transport implementations. This vulnerability allows an attacker to bypass TSIG protection, leading to unauthorized access to functionalities such as zone transfers and dynamic DNS updates. For DoH and DoH3, the issue is more severe as any request with a TSIG record is treated as authenticated, even with an invalid key.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le | — |
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Submariner v0.21 General Availability release images, which provide enhancements, security fixes, and updated container images.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE links in the References section.\nRed Hat Advanced Cluster Management for Kubernetes v2.14",
"title": "Topic"
},
{
"category": "general",
"text": "Submariner is a Kubernetes operator that enables cross-cluster connectivity for services and pods, implementing KEP-1645 (Multi-Cluster Services API). After deploying the Submariner operator, it can enable direct networking between pods and services across different Kubernetes clusters.\n\nFor more information about Submariner, see the Submariner open source community website at: https://submariner.io/.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:25127",
"url": "https://access.redhat.com/errata/RHSA-2026:25127"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2024-25621",
"url": "https://access.redhat.com/security/cve/CVE-2024-25621"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61726",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61728",
"url": "https://access.redhat.com/security/cve/CVE-2025-61728"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61729",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-68121",
"url": "https://access.redhat.com/security/cve/CVE-2025-68121"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-68151",
"url": "https://access.redhat.com/security/cve/CVE-2025-68151"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-21441",
"url": "https://access.redhat.com/security/cve/CVE-2026-21441"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-25679",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-26017",
"url": "https://access.redhat.com/security/cve/CVE-2026-26017"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-26018",
"url": "https://access.redhat.com/security/cve/CVE-2026-26018"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32280",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32936",
"url": "https://access.redhat.com/security/cve/CVE-2026-32936"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35579",
"url": "https://access.redhat.com/security/cve/CVE-2026-35579"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_25127.json"
}
],
"title": "Red Hat Security Advisory: Submariner v0.21 security fixes and container updates",
"tracking": {
"current_release_date": "2026-06-29T18:45:29+00:00",
"generator": {
"date": "2026-06-29T18:45:29+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:25127",
"initial_release_date": "2026-06-10T20:51:55+00:00",
"revision_history": [
{
"date": "2026-06-10T20:51:55+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-10T20:51:57+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T18:45:29+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product": {
"name": "Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:acm:2.14::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Advanced Cluster Management for Kubernetes"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"product_id": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/lighthouse-agent-rhel9@sha256%3Abbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/lighthouse-agent-rhel9\u0026tag=1780204232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"product_id": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/lighthouse-coredns-rhel9@sha256%3Aeee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/lighthouse-coredns-rhel9\u0026tag=1780204249"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"product_id": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/nettest-rhel9@sha256%3A80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/nettest-rhel9\u0026tag=1780241410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"product_id": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"product_identification_helper": {
"purl": "pkg:oci/subctl-rhel9@sha256%3Acac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/subctl-rhel9\u0026tag=1780238563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"product_id": "registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"product_identification_helper": {
"purl": "pkg:oci/submariner-operator-bundle@sha256%3A5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/submariner-operator-bundle\u0026tag=1780248353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"product_id": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/submariner-gateway-rhel9@sha256%3A5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/submariner-gateway-rhel9\u0026tag=1780204887"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"product_id": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"product_identification_helper": {
"purl": "pkg:oci/submariner-globalnet-rhel9@sha256%3Aa7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/submariner-globalnet-rhel9\u0026tag=1780204696"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"product_id": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/submariner-rhel9-operator@sha256%3A2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/submariner-rhel9-operator\u0026tag=1780204322"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"product_id": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/submariner-route-agent-rhel9@sha256%3A5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/submariner-route-agent-rhel9\u0026tag=1780204631"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"product_id": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/lighthouse-agent-rhel9@sha256%3A0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/lighthouse-agent-rhel9\u0026tag=1780204232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"product_id": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/lighthouse-coredns-rhel9@sha256%3A84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/lighthouse-coredns-rhel9\u0026tag=1780204249"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"product_id": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/nettest-rhel9@sha256%3A5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/nettest-rhel9\u0026tag=1780241410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"product_id": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/subctl-rhel9@sha256%3A5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/subctl-rhel9\u0026tag=1780238563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"product_id": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/submariner-gateway-rhel9@sha256%3A157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/submariner-gateway-rhel9\u0026tag=1780204887"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"product_id": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/submariner-globalnet-rhel9@sha256%3Aed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/submariner-globalnet-rhel9\u0026tag=1780204696"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"product_id": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/submariner-rhel9-operator@sha256%3A100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/submariner-rhel9-operator\u0026tag=1780204322"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le",
"product_id": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/submariner-route-agent-rhel9@sha256%3Ac52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/submariner-route-agent-rhel9\u0026tag=1780204631"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"product_id": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/lighthouse-agent-rhel9@sha256%3Aeac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/lighthouse-agent-rhel9\u0026tag=1780204232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"product_id": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/lighthouse-coredns-rhel9@sha256%3Ae688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/lighthouse-coredns-rhel9\u0026tag=1780204249"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"product_id": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/nettest-rhel9@sha256%3Af928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/nettest-rhel9\u0026tag=1780241410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"product_id": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/subctl-rhel9@sha256%3A5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/subctl-rhel9\u0026tag=1780238563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"product_id": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"product_identification_helper": {
"purl": "pkg:oci/submariner-gateway-rhel9@sha256%3A7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/submariner-gateway-rhel9\u0026tag=1780204887"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"product_id": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/submariner-globalnet-rhel9@sha256%3A2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/submariner-globalnet-rhel9\u0026tag=1780204696"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"product_id": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"product_identification_helper": {
"purl": "pkg:oci/submariner-rhel9-operator@sha256%3A01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/submariner-rhel9-operator\u0026tag=1780204322"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"product_id": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"product_identification_helper": {
"purl": "pkg:oci/submariner-route-agent-rhel9@sha256%3A30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/submariner-route-agent-rhel9\u0026tag=1780204631"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"product_id": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"product_identification_helper": {
"purl": "pkg:oci/lighthouse-agent-rhel9@sha256%3A6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/lighthouse-agent-rhel9\u0026tag=1780204232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"product_id": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"product_identification_helper": {
"purl": "pkg:oci/lighthouse-coredns-rhel9@sha256%3Ae802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/lighthouse-coredns-rhel9\u0026tag=1780204249"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"product_id": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"product_identification_helper": {
"purl": "pkg:oci/nettest-rhel9@sha256%3A831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/nettest-rhel9\u0026tag=1780241410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"product_id": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"product_identification_helper": {
"purl": "pkg:oci/subctl-rhel9@sha256%3Aa154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/subctl-rhel9\u0026tag=1780238563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"product_id": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/submariner-gateway-rhel9@sha256%3A2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/submariner-gateway-rhel9\u0026tag=1780204887"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"product_id": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/submariner-globalnet-rhel9@sha256%3Abe69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/submariner-globalnet-rhel9\u0026tag=1780204696"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"product_id": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/submariner-rhel9-operator@sha256%3A60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/submariner-rhel9-operator\u0026tag=1780204322"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"product_id": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/submariner-route-agent-rhel9@sha256%3A83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/submariner-route-agent-rhel9\u0026tag=1780204631"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.14"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-25621",
"cwe": {
"id": "CWE-279",
"name": "Incorrect Execution-Assigned Permissions"
},
"discovery_date": "2025-11-06T19:01:04.402278+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2413190"
}
],
"notes": [
{
"category": "description",
"text": "A local privilege escalation vulnerability has been discovered in containerd. This vulnerability is the result of an overly broad default permission which allows local users on the host to potentially access the metadata store, the content store and the contents of Kubernetes local volumes. The contents of volumes might include setuid binaries, which could allow a local user on the host to elevate privileges on the host.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/containerd/containerd: containerd local privilege escalation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2024-25621"
},
{
"category": "external",
"summary": "RHBZ#2413190",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2413190"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2024-25621",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-25621"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-25621",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2024-25621"
},
{
"category": "external",
"summary": "https://github.com/containerd/containerd/blob/main/docs/rootless.md",
"url": "https://github.com/containerd/containerd/blob/main/docs/rootless.md"
},
{
"category": "external",
"summary": "https://github.com/containerd/containerd/commit/7c59e8e9e970d38061a77b586b23655c352bfec5",
"url": "https://github.com/containerd/containerd/commit/7c59e8e9e970d38061a77b586b23655c352bfec5"
},
{
"category": "external",
"summary": "https://github.com/containerd/containerd/security/advisories/GHSA-pwhc-rpq9-4c8w",
"url": "https://github.com/containerd/containerd/security/advisories/GHSA-pwhc-rpq9-4c8w"
}
],
"release_date": "2025-11-06T18:36:21.566000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T20:51:55+00:00",
"details": "For release note details, see the upstream Submariner release notes:\n\nhttps://submariner.io/community/releases/\n\nDownstream-specific issues resolved:\n* ACM-27238\n* ACM-28294\n* ACM-28295\n* ACM-28311\n* ACM-28313\n* ACM-28314\n* ACM-28315\n* ACM-28316\n* ACM-28329\n* ACM-28331\n* ACM-28333\n* ACM-28335\n* ACM-28337\n* ACM-28339\n* ACM-28342\n* ACM-29317\n* ACM-29511\n* ACM-29613\n* ACM-29614\n* ACM-29631\n* ACM-29632\n* ACM-29633\n* ACM-29634\n* ACM-29776\n* ACM-30134\n* ACM-30726\n* ACM-30727\n* ACM-30728\n* ACM-30729\n* ACM-30970\n* ACM-31136\n* ACM-31831\n* ACM-31840\n* ACM-32575\n* ACM-32842\n* ACM-34108\n* ACM-34586\n* ACM-34589\n\nFor more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25127"
},
{
"category": "workaround",
"details": "The system administrator on the host can manually chmod the directories to not\nhave group or world accessible permissions:\n```\nchmod 700 /var/lib/containerd\nchmod 700 /run/containerd/io.containerd.grpc.v1.cri\nchmod 700 /run/containerd/io.containerd.sandbox.controller.v1.shim\n```\nAn alternative mitigation would be to run containerd in rootless mode.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "LOW",
"baseScore": 7.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/containerd/containerd: containerd local privilege escalation"
},
{
"cve": "CVE-2025-61726",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-28T20:01:42.791305+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434432"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: net/url: Memory exhaustion in query parameter parsing in net/url",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker must be able to send a specially crafted HTTP request to an application parsing URL-encoded forms with net/url, specifically a request containing a large number of unique query parameters. The request will cause the application to consume an excessive amount of memory and eventually result in a denial of service, with no impact to confidentiality or integrity. Due to this reason, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "RHBZ#2434432",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434432"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61726",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61726"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://go.dev/cl/736712",
"url": "https://go.dev/cl/736712"
},
{
"category": "external",
"summary": "https://go.dev/issue/77101",
"url": "https://go.dev/issue/77101"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc",
"url": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4341",
"url": "https://pkg.go.dev/vuln/GO-2026-4341"
}
],
"release_date": "2026-01-28T19:30:31.215000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T20:51:55+00:00",
"details": "For release note details, see the upstream Submariner release notes:\n\nhttps://submariner.io/community/releases/\n\nDownstream-specific issues resolved:\n* ACM-27238\n* ACM-28294\n* ACM-28295\n* ACM-28311\n* ACM-28313\n* ACM-28314\n* ACM-28315\n* ACM-28316\n* ACM-28329\n* ACM-28331\n* ACM-28333\n* ACM-28335\n* ACM-28337\n* ACM-28339\n* ACM-28342\n* ACM-29317\n* ACM-29511\n* ACM-29613\n* ACM-29614\n* ACM-29631\n* ACM-29632\n* ACM-29633\n* ACM-29634\n* ACM-29776\n* ACM-30134\n* ACM-30726\n* ACM-30727\n* ACM-30728\n* ACM-30729\n* ACM-30970\n* ACM-31136\n* ACM-31831\n* ACM-31840\n* ACM-32575\n* ACM-32842\n* ACM-34108\n* ACM-34586\n* ACM-34589\n\nFor more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25127"
},
{
"category": "workaround",
"details": "Red Hat has investigated whether a possible mitigation exists for this issue, and has not been able to identify a practical example. Please update the affected package as soon as possible.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang: net/url: Memory exhaustion in query parameter parsing in net/url"
},
{
"cve": "CVE-2025-61728",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-28T20:01:39.965024+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434431"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the archive/zip package in the Go standard library. A super-linear file name indexing algorithm is used in the first time a file in an archive is opened. A crafted zip archive containing a specific arrangement of file names can cause an excessive CPU and memory consumption. A Go application processing a malicious archive can become unresponsive or crash, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: archive/zip: Excessive CPU consumption when building archive index in archive/zip",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker needs to be able to process a malicious zip archive with an application using the archive/zip package. Additionally, this vulnerability can cause a Go application to consume an excessive amount of CPU and memory, eventually resulting in a denial of service with no other security impact. Due to these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61728"
},
{
"category": "external",
"summary": "RHBZ#2434431",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434431"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61728",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61728"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61728",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61728"
},
{
"category": "external",
"summary": "https://go.dev/cl/736713",
"url": "https://go.dev/cl/736713"
},
{
"category": "external",
"summary": "https://go.dev/issue/77102",
"url": "https://go.dev/issue/77102"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc",
"url": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4342",
"url": "https://pkg.go.dev/vuln/GO-2026-4342"
}
],
"release_date": "2026-01-28T19:30:31.354000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T20:51:55+00:00",
"details": "For release note details, see the upstream Submariner release notes:\n\nhttps://submariner.io/community/releases/\n\nDownstream-specific issues resolved:\n* ACM-27238\n* ACM-28294\n* ACM-28295\n* ACM-28311\n* ACM-28313\n* ACM-28314\n* ACM-28315\n* ACM-28316\n* ACM-28329\n* ACM-28331\n* ACM-28333\n* ACM-28335\n* ACM-28337\n* ACM-28339\n* ACM-28342\n* ACM-29317\n* ACM-29511\n* ACM-29613\n* ACM-29614\n* ACM-29631\n* ACM-29632\n* ACM-29633\n* ACM-29634\n* ACM-29776\n* ACM-30134\n* ACM-30726\n* ACM-30727\n* ACM-30728\n* ACM-30729\n* ACM-30970\n* ACM-31136\n* ACM-31831\n* ACM-31840\n* ACM-32575\n* ACM-32842\n* ACM-34108\n* ACM-34586\n* ACM-34589\n\nFor more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25127"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, implement a timeout in your archive/zip processing logic to abort the operation if it exceeds a few seconds, preventing the application from consuming an excessive amount of resources.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: archive/zip: Excessive CPU consumption when building archive index in archive/zip"
},
{
"cve": "CVE-2025-61729",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2025-12-02T20:01:45.330964+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418462"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "RHBZ#2418462",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418462"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61729",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61729"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://go.dev/cl/725920",
"url": "https://go.dev/cl/725920"
},
{
"category": "external",
"summary": "https://go.dev/issue/76445",
"url": "https://go.dev/issue/76445"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4",
"url": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4155",
"url": "https://pkg.go.dev/vuln/GO-2025-4155"
}
],
"release_date": "2025-12-02T18:54:10.166000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T20:51:55+00:00",
"details": "For release note details, see the upstream Submariner release notes:\n\nhttps://submariner.io/community/releases/\n\nDownstream-specific issues resolved:\n* ACM-27238\n* ACM-28294\n* ACM-28295\n* ACM-28311\n* ACM-28313\n* ACM-28314\n* ACM-28315\n* ACM-28316\n* ACM-28329\n* ACM-28331\n* ACM-28333\n* ACM-28335\n* ACM-28337\n* ACM-28339\n* ACM-28342\n* ACM-29317\n* ACM-29511\n* ACM-29613\n* ACM-29614\n* ACM-29631\n* ACM-29632\n* ACM-29633\n* ACM-29634\n* ACM-29776\n* ACM-30134\n* ACM-30726\n* ACM-30727\n* ACM-30728\n* ACM-30729\n* ACM-30970\n* ACM-31136\n* ACM-31831\n* ACM-31840\n* ACM-32575\n* ACM-32842\n* ACM-34108\n* ACM-34586\n* ACM-34589\n\nFor more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25127"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate"
},
{
"cve": "CVE-2025-68121",
"discovery_date": "2026-02-05T18:01:30.086058+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2437111"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the crypto/tls component. This vulnerability occurs during Transport Layer Security (TLS) session resumption when certificate authority (CA) settings are modified between the initial and resumed handshakes. An attacker could exploit this to bypass certificate validation, allowing a client or server to establish a connection that should have been rejected. This could lead to an authentication bypass under specific conditions.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/tls: crypto/tls: Incorrect certificate validation during TLS session resumption",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is a moderate flaw because it only occurs under specific conditions, such as TLS session resumption with runtime changes to certificate authority settings. Exploitation is not straightforward and requires a controlled setup. The impact is limited to certificate validation within the same component and does not affect system availability.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68121"
},
{
"category": "external",
"summary": "RHBZ#2437111",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2437111"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68121",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68121"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68121",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68121"
},
{
"category": "external",
"summary": "https://go.dev/cl/737700",
"url": "https://go.dev/cl/737700"
},
{
"category": "external",
"summary": "https://go.dev/issue/77217",
"url": "https://go.dev/issue/77217"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/K09ubi9FQFk",
"url": "https://groups.google.com/g/golang-announce/c/K09ubi9FQFk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4337",
"url": "https://pkg.go.dev/vuln/GO-2026-4337"
}
],
"release_date": "2026-02-05T17:48:44.141000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T20:51:55+00:00",
"details": "For release note details, see the upstream Submariner release notes:\n\nhttps://submariner.io/community/releases/\n\nDownstream-specific issues resolved:\n* ACM-27238\n* ACM-28294\n* ACM-28295\n* ACM-28311\n* ACM-28313\n* ACM-28314\n* ACM-28315\n* ACM-28316\n* ACM-28329\n* ACM-28331\n* ACM-28333\n* ACM-28335\n* ACM-28337\n* ACM-28339\n* ACM-28342\n* ACM-29317\n* ACM-29511\n* ACM-29613\n* ACM-29614\n* ACM-29631\n* ACM-29632\n* ACM-29633\n* ACM-29634\n* ACM-29776\n* ACM-30134\n* ACM-30726\n* ACM-30727\n* ACM-30728\n* ACM-30729\n* ACM-30970\n* ACM-31136\n* ACM-31831\n* ACM-31840\n* ACM-32575\n* ACM-32842\n* ACM-34108\n* ACM-34586\n* ACM-34589\n\nFor more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25127"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "crypto/tls: crypto/tls: Incorrect certificate validation during TLS session resumption"
},
{
"cve": "CVE-2025-68151",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-08T16:01:04.891768+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2428009"
}
],
"notes": [
{
"category": "description",
"text": "Multiple CoreDNS server implementations (gRPC, HTTPS, and HTTP/3) lack critical resource-limiting controls. An unauthenticated remote attacker can exhaust memory and degrade or crash the server by opening many concurrent connections, streams, or sending oversized request bodies. The issue is similar in nature to CVE-2025-47950 (QUIC DoS) but affects additional server types that do not enforce connection limits, stream limits, or message size constraints.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/coredns/coredns/core/dnsserver: CoreDNS DoS via unbounded connections and oversized messages",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68151"
},
{
"category": "external",
"summary": "RHBZ#2428009",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2428009"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68151",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68151"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68151",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68151"
},
{
"category": "external",
"summary": "https://github.com/coredns/coredns/commit/0d8cbb1a6bcb6bc9c1a489865278b8725fa20812",
"url": "https://github.com/coredns/coredns/commit/0d8cbb1a6bcb6bc9c1a489865278b8725fa20812"
},
{
"category": "external",
"summary": "https://github.com/coredns/coredns/pull/7490",
"url": "https://github.com/coredns/coredns/pull/7490"
},
{
"category": "external",
"summary": "https://github.com/coredns/coredns/security/advisories/GHSA-527x-5wrf-22m2",
"url": "https://github.com/coredns/coredns/security/advisories/GHSA-527x-5wrf-22m2"
}
],
"release_date": "2026-01-08T15:33:12.711000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T20:51:55+00:00",
"details": "For release note details, see the upstream Submariner release notes:\n\nhttps://submariner.io/community/releases/\n\nDownstream-specific issues resolved:\n* ACM-27238\n* ACM-28294\n* ACM-28295\n* ACM-28311\n* ACM-28313\n* ACM-28314\n* ACM-28315\n* ACM-28316\n* ACM-28329\n* ACM-28331\n* ACM-28333\n* ACM-28335\n* ACM-28337\n* ACM-28339\n* ACM-28342\n* ACM-29317\n* ACM-29511\n* ACM-29613\n* ACM-29614\n* ACM-29631\n* ACM-29632\n* ACM-29633\n* ACM-29634\n* ACM-29776\n* ACM-30134\n* ACM-30726\n* ACM-30727\n* ACM-30728\n* ACM-30729\n* ACM-30970\n* ACM-31136\n* ACM-31831\n* ACM-31840\n* ACM-32575\n* ACM-32842\n* ACM-34108\n* ACM-34586\n* ACM-34589\n\nFor more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25127"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "github.com/coredns/coredns/core/dnsserver: CoreDNS DoS via unbounded connections and oversized messages"
},
{
"cve": "CVE-2026-21441",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2026-01-07T23:01:59.422078+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2427726"
}
],
"notes": [
{
"category": "description",
"text": "urllib3 is an HTTP client library for Python. urllib3\u0027s streaming API is designed for the efficient handling of large HTTP responses by reading the content in chunks, rather than loading the entire response body into memory at once. urllib3 can perform decoding or decompression based on the HTTP `Content-Encoding` header (e.g., `gzip`, `deflate`, `br`, or `zstd`). When using the streaming API, the library decompresses only the necessary bytes, enabling partial content consumption. Starting in version 1.22 and prior to version 2.6.3, for HTTP redirect responses, the library would read the entire response body to drain the connection and decompress the content unnecessarily. This decompression occurred even before any read methods were called, and configured read limits did not restrict the amount of decompressed data. As a result, there was no safeguard against decompression bombs. A malicious server could exploit this to trigger excessive resource consumption on the client. Applications and libraries are affected when they stream content from untrusted sources by setting `preload_content=False` when they do not disable redirects. Users should upgrade to at least urllib3 v2.6.3, in which the library does not decode content of redirect responses when `preload_content=False`. If upgrading is not immediately possible, disable redirects by setting `redirect=False` for requests to untrusted source.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "urllib3: urllib3 vulnerable to decompression-bomb safeguard bypass when following HTTP redirects (streaming API)",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-21441"
},
{
"category": "external",
"summary": "RHBZ#2427726",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2427726"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-21441",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-21441"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-21441",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-21441"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/commit/8864ac407bba8607950025e0979c4c69bc7abc7b",
"url": "https://github.com/urllib3/urllib3/commit/8864ac407bba8607950025e0979c4c69bc7abc7b"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/security/advisories/GHSA-38jv-5279-wg99",
"url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-38jv-5279-wg99"
}
],
"release_date": "2026-01-07T22:09:01.936000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T20:51:55+00:00",
"details": "For release note details, see the upstream Submariner release notes:\n\nhttps://submariner.io/community/releases/\n\nDownstream-specific issues resolved:\n* ACM-27238\n* ACM-28294\n* ACM-28295\n* ACM-28311\n* ACM-28313\n* ACM-28314\n* ACM-28315\n* ACM-28316\n* ACM-28329\n* ACM-28331\n* ACM-28333\n* ACM-28335\n* ACM-28337\n* ACM-28339\n* ACM-28342\n* ACM-29317\n* ACM-29511\n* ACM-29613\n* ACM-29614\n* ACM-29631\n* ACM-29632\n* ACM-29633\n* ACM-29634\n* ACM-29776\n* ACM-30134\n* ACM-30726\n* ACM-30727\n* ACM-30728\n* ACM-30729\n* ACM-30970\n* ACM-31136\n* ACM-31831\n* ACM-31840\n* ACM-32575\n* ACM-32842\n* ACM-34108\n* ACM-34586\n* ACM-34589\n\nFor more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25127"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3 vulnerable to decompression-bomb safeguard bypass when following HTTP redirects (streaming API)"
},
{
"cve": "CVE-2026-25679",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-06T22:02:11.567841+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445356"
}
],
"notes": [
{
"category": "description",
"text": "The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "net/url: Incorrect parsing of IPv6 host literals in net/url",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "RHBZ#2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25679",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25679"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://go.dev/cl/752180",
"url": "https://go.dev/cl/752180"
},
{
"category": "external",
"summary": "https://go.dev/issue/77578",
"url": "https://go.dev/issue/77578"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4601",
"url": "https://pkg.go.dev/vuln/GO-2026-4601"
}
],
"release_date": "2026-03-06T21:28:14.211000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T20:51:55+00:00",
"details": "For release note details, see the upstream Submariner release notes:\n\nhttps://submariner.io/community/releases/\n\nDownstream-specific issues resolved:\n* ACM-27238\n* ACM-28294\n* ACM-28295\n* ACM-28311\n* ACM-28313\n* ACM-28314\n* ACM-28315\n* ACM-28316\n* ACM-28329\n* ACM-28331\n* ACM-28333\n* ACM-28335\n* ACM-28337\n* ACM-28339\n* ACM-28342\n* ACM-29317\n* ACM-29511\n* ACM-29613\n* ACM-29614\n* ACM-29631\n* ACM-29632\n* ACM-29633\n* ACM-29634\n* ACM-29776\n* ACM-30134\n* ACM-30726\n* ACM-30727\n* ACM-30728\n* ACM-30729\n* ACM-30970\n* ACM-31136\n* ACM-31831\n* ACM-31840\n* ACM-32575\n* ACM-32842\n* ACM-34108\n* ACM-34586\n* ACM-34589\n\nFor more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25127"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-26017",
"cwe": {
"id": "CWE-367",
"name": "Time-of-check Time-of-use (TOCTOU) Race Condition"
},
"discovery_date": "2026-03-06T16:01:45.971241+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445244"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in CoreDNS, a DNS server that uses a chain of plugins. This logical vulnerability allows an attacker to bypass DNS access controls. The issue occurs because security plugins, such as \u0027acl\u0027, are evaluated before the \u0027rewrite\u0027 plugin, creating a Time-of-Check Time-of-Use (TOCTOU) flaw. This flaw enables an attacker to circumvent intended access restrictions.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/coredns/coredns: CoreDNS: DNS access control bypass due to plugin execution order flaw",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-26017"
},
{
"category": "external",
"summary": "RHBZ#2445244",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445244"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-26017",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-26017"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-26017",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-26017"
},
{
"category": "external",
"summary": "https://github.com/coredns/coredns/releases/tag/v1.14.2",
"url": "https://github.com/coredns/coredns/releases/tag/v1.14.2"
},
{
"category": "external",
"summary": "https://github.com/coredns/coredns/security/advisories/GHSA-c9v3-4pv7-87pr",
"url": "https://github.com/coredns/coredns/security/advisories/GHSA-c9v3-4pv7-87pr"
}
],
"release_date": "2026-03-06T15:36:15.655000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T20:51:55+00:00",
"details": "For release note details, see the upstream Submariner release notes:\n\nhttps://submariner.io/community/releases/\n\nDownstream-specific issues resolved:\n* ACM-27238\n* ACM-28294\n* ACM-28295\n* ACM-28311\n* ACM-28313\n* ACM-28314\n* ACM-28315\n* ACM-28316\n* ACM-28329\n* ACM-28331\n* ACM-28333\n* ACM-28335\n* ACM-28337\n* ACM-28339\n* ACM-28342\n* ACM-29317\n* ACM-29511\n* ACM-29613\n* ACM-29614\n* ACM-29631\n* ACM-29632\n* ACM-29633\n* ACM-29634\n* ACM-29776\n* ACM-30134\n* ACM-30726\n* ACM-30727\n* ACM-30728\n* ACM-30729\n* ACM-30970\n* ACM-31136\n* ACM-31831\n* ACM-31840\n* ACM-32575\n* ACM-32842\n* ACM-34108\n* ACM-34586\n* ACM-34589\n\nFor more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25127"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/coredns/coredns: CoreDNS: DNS access control bypass due to plugin execution order flaw"
},
{
"cve": "CVE-2026-26018",
"cwe": {
"id": "CWE-1241",
"name": "Use of Predictable Algorithm in Random Number Generator"
},
"discovery_date": "2026-03-06T16:01:38.150099+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445242"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in CoreDNS, a DNS server that chains plugins. A remote attacker can exploit this flaw by sending specially crafted DNS queries. This vulnerability exists in CoreDNS\u0027s loop detection plugin due to the use of a predictable pseudo-random number generator (PRNG) for generating a secret query name. Successful exploitation can lead to a denial of service (DoS) by crashing the DNS server.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/coredns/coredns: CoreDNS: Denial of Service vulnerability due to predictable pseudo-random number generation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-26018"
},
{
"category": "external",
"summary": "RHBZ#2445242",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445242"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-26018",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-26018"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-26018",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-26018"
},
{
"category": "external",
"summary": "https://github.com/coredns/coredns/releases/tag/v1.14.2",
"url": "https://github.com/coredns/coredns/releases/tag/v1.14.2"
},
{
"category": "external",
"summary": "https://github.com/coredns/coredns/security/advisories/GHSA-h75p-j8xm-m278",
"url": "https://github.com/coredns/coredns/security/advisories/GHSA-h75p-j8xm-m278"
}
],
"release_date": "2026-03-06T15:35:50.801000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T20:51:55+00:00",
"details": "For release note details, see the upstream Submariner release notes:\n\nhttps://submariner.io/community/releases/\n\nDownstream-specific issues resolved:\n* ACM-27238\n* ACM-28294\n* ACM-28295\n* ACM-28311\n* ACM-28313\n* ACM-28314\n* ACM-28315\n* ACM-28316\n* ACM-28329\n* ACM-28331\n* ACM-28333\n* ACM-28335\n* ACM-28337\n* ACM-28339\n* ACM-28342\n* ACM-29317\n* ACM-29511\n* ACM-29613\n* ACM-29614\n* ACM-29631\n* ACM-29632\n* ACM-29633\n* ACM-29634\n* ACM-29776\n* ACM-30134\n* ACM-30726\n* ACM-30727\n* ACM-30728\n* ACM-30729\n* ACM-30970\n* ACM-31136\n* ACM-31831\n* ACM-31840\n* ACM-32575\n* ACM-32842\n* ACM-34108\n* ACM-34586\n* ACM-34589\n\nFor more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25127"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/coredns/coredns: CoreDNS: Denial of Service vulnerability due to predictable pseudo-random number generation"
},
{
"cve": "CVE-2026-32280",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-08T02:01:19.572351+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456339"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "RHBZ#2456339",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456339"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32280",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32280"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://go.dev/cl/758320",
"url": "https://go.dev/cl/758320"
},
{
"category": "external",
"summary": "https://go.dev/issue/78282",
"url": "https://go.dev/issue/78282"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4947",
"url": "https://pkg.go.dev/vuln/GO-2026-4947"
}
],
"release_date": "2026-04-08T01:06:58.595000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T20:51:55+00:00",
"details": "For release note details, see the upstream Submariner release notes:\n\nhttps://submariner.io/community/releases/\n\nDownstream-specific issues resolved:\n* ACM-27238\n* ACM-28294\n* ACM-28295\n* ACM-28311\n* ACM-28313\n* ACM-28314\n* ACM-28315\n* ACM-28316\n* ACM-28329\n* ACM-28331\n* ACM-28333\n* ACM-28335\n* ACM-28337\n* ACM-28339\n* ACM-28342\n* ACM-29317\n* ACM-29511\n* ACM-29613\n* ACM-29614\n* ACM-29631\n* ACM-29632\n* ACM-29633\n* ACM-29634\n* ACM-29776\n* ACM-30134\n* ACM-30726\n* ACM-30727\n* ACM-30728\n* ACM-30729\n* ACM-30970\n* ACM-31136\n* ACM-31831\n* ACM-31840\n* ACM-32575\n* ACM-32842\n* ACM-34108\n* ACM-34586\n* ACM-34589\n\nFor more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25127"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building"
},
{
"cve": "CVE-2026-32936",
"cwe": {
"id": "CWE-1284",
"name": "Improper Validation of Specified Quantity in Input"
},
"discovery_date": "2026-05-05T20:01:52.218439+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2466869"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in CoreDNS, a DNS server that chains plugins. A remote, unauthenticated attacker can exploit this vulnerability by repeatedly sending oversized DNS-over-HTTPS (DoH) GET requests. The GET path, unlike the POST path, lacks size validation before processing large `dns=` query parameter values. This can lead to high CPU usage, significant memory allocations, and increased garbage collection, resulting in a Denial of Service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/coredns/coredns: CoreDNS: Denial of Service via oversized DNS-over-HTTPS GET requests",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32936"
},
{
"category": "external",
"summary": "RHBZ#2466869",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2466869"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32936",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32936"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32936",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32936"
},
{
"category": "external",
"summary": "https://github.com/coredns/coredns/releases/tag/v1.14.3",
"url": "https://github.com/coredns/coredns/releases/tag/v1.14.3"
},
{
"category": "external",
"summary": "https://github.com/coredns/coredns/security/advisories/GHSA-63cw-r7xf-jmwr",
"url": "https://github.com/coredns/coredns/security/advisories/GHSA-63cw-r7xf-jmwr"
}
],
"release_date": "2026-05-05T19:07:51.926000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T20:51:55+00:00",
"details": "For release note details, see the upstream Submariner release notes:\n\nhttps://submariner.io/community/releases/\n\nDownstream-specific issues resolved:\n* ACM-27238\n* ACM-28294\n* ACM-28295\n* ACM-28311\n* ACM-28313\n* ACM-28314\n* ACM-28315\n* ACM-28316\n* ACM-28329\n* ACM-28331\n* ACM-28333\n* ACM-28335\n* ACM-28337\n* ACM-28339\n* ACM-28342\n* ACM-29317\n* ACM-29511\n* ACM-29613\n* ACM-29614\n* ACM-29631\n* ACM-29632\n* ACM-29633\n* ACM-29634\n* ACM-29776\n* ACM-30134\n* ACM-30726\n* ACM-30727\n* ACM-30728\n* ACM-30729\n* ACM-30970\n* ACM-31136\n* ACM-31831\n* ACM-31840\n* ACM-32575\n* ACM-32842\n* ACM-34108\n* ACM-34586\n* ACM-34589\n\nFor more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25127"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "github.com/coredns/coredns: CoreDNS: Denial of Service via oversized DNS-over-HTTPS GET requests"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T20:51:55+00:00",
"details": "For release note details, see the upstream Submariner release notes:\n\nhttps://submariner.io/community/releases/\n\nDownstream-specific issues resolved:\n* ACM-27238\n* ACM-28294\n* ACM-28295\n* ACM-28311\n* ACM-28313\n* ACM-28314\n* ACM-28315\n* ACM-28316\n* ACM-28329\n* ACM-28331\n* ACM-28333\n* ACM-28335\n* ACM-28337\n* ACM-28339\n* ACM-28342\n* ACM-29317\n* ACM-29511\n* ACM-29613\n* ACM-29614\n* ACM-29631\n* ACM-29632\n* ACM-29633\n* ACM-29634\n* ACM-29776\n* ACM-30134\n* ACM-30726\n* ACM-30727\n* ACM-30728\n* ACM-30729\n* ACM-30970\n* ACM-31136\n* ACM-31831\n* ACM-31840\n* ACM-32575\n* ACM-32842\n* ACM-34108\n* ACM-34586\n* ACM-34589\n\nFor more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25127"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T20:51:55+00:00",
"details": "For release note details, see the upstream Submariner release notes:\n\nhttps://submariner.io/community/releases/\n\nDownstream-specific issues resolved:\n* ACM-27238\n* ACM-28294\n* ACM-28295\n* ACM-28311\n* ACM-28313\n* ACM-28314\n* ACM-28315\n* ACM-28316\n* ACM-28329\n* ACM-28331\n* ACM-28333\n* ACM-28335\n* ACM-28337\n* ACM-28339\n* ACM-28342\n* ACM-29317\n* ACM-29511\n* ACM-29613\n* ACM-29614\n* ACM-29631\n* ACM-29632\n* ACM-29633\n* ACM-29634\n* ACM-29776\n* ACM-30134\n* ACM-30726\n* ACM-30727\n* ACM-30728\n* ACM-30729\n* ACM-30970\n* ACM-31136\n* ACM-31831\n* ACM-31840\n* ACM-32575\n* ACM-32842\n* ACM-34108\n* ACM-34586\n* ACM-34589\n\nFor more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25127"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
},
{
"cve": "CVE-2026-35579",
"cwe": {
"id": "CWE-303",
"name": "Incorrect Implementation of Authentication Algorithm"
},
"discovery_date": "2026-05-05T21:01:06.423844+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2466905"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in CoreDNS. An unauthenticated network attacker can exploit incorrect handling of TSIG (Transaction Signature) authentication in the gRPC, QUIC, DoH (DNS over HTTPS), and DoH3 transport implementations. This vulnerability allows an attacker to bypass TSIG protection, leading to unauthorized access to functionalities such as zone transfers and dynamic DNS updates. For DoH and DoH3, the issue is more severe as any request with a TSIG record is treated as authenticated, even with an invalid key.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/coredns/coredns: CoreDNS: Authentication bypass allows unauthorized access to TSIG-protected functionalities",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35579"
},
{
"category": "external",
"summary": "RHBZ#2466905",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2466905"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35579",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35579"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35579",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35579"
},
{
"category": "external",
"summary": "https://github.com/coredns/coredns/security/advisories/GHSA-vp29-5652-4fw9",
"url": "https://github.com/coredns/coredns/security/advisories/GHSA-vp29-5652-4fw9"
}
],
"release_date": "2026-05-05T20:29:16.903000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T20:51:55+00:00",
"details": "For release note details, see the upstream Submariner release notes:\n\nhttps://submariner.io/community/releases/\n\nDownstream-specific issues resolved:\n* ACM-27238\n* ACM-28294\n* ACM-28295\n* ACM-28311\n* ACM-28313\n* ACM-28314\n* ACM-28315\n* ACM-28316\n* ACM-28329\n* ACM-28331\n* ACM-28333\n* ACM-28335\n* ACM-28337\n* ACM-28339\n* ACM-28342\n* ACM-29317\n* ACM-29511\n* ACM-29613\n* ACM-29614\n* ACM-29631\n* ACM-29632\n* ACM-29633\n* ACM-29634\n* ACM-29776\n* ACM-30134\n* ACM-30726\n* ACM-30727\n* ACM-30728\n* ACM-30729\n* ACM-30970\n* ACM-31136\n* ACM-31831\n* ACM-31840\n* ACM-32575\n* ACM-32842\n* ACM-34108\n* ACM-34586\n* ACM-34589\n\nFor more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25127"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:0cbb0970c438efa6f7da80f8628b76550d8986d7f73b4f00e5c929d766472d7b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:6aaeb062ada48648fd880cc1094180a2fa2b0bb3e9bbd9b0bcbe9a833c7f7208_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:bbe086814cc2fe9e53699ff23705479b493a62f9521b5f2664fcdb97dd5705a9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-agent-rhel9@sha256:eac6affcb33fec57b7c3018346aa26759326b49264973b5c9a01d1a7c18285fc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:84ea010ee8369be60c67bb28c831897583c5d23055c902c5e68be70729d80b73_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e688af48ddf8d59c39e64b4c38e72fc2d6f06f28ab3732703d1c1664d91bdad7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:e802f821ed0cc9f6f026a0385681e9e8b0daad39b6e7ea75e7c99f3df28e4e44_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/lighthouse-coredns-rhel9@sha256:eee8da5b239e8a1cb5dc52e6ab514eebe159977afe842a0f7035732701a6f87a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:5b036c08592fc679e4a158d58e2077929d07eb62825d94fd55afeedaa831d154_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:80e8f73158f4300a85f94c84a4e71fd6c0d4ce9553380c623f156b137497dc5c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:831c2d010a7f93da6c7f803c464171e3b14c2fe15779e3d2b0829f8d0f4e2285_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/nettest-rhel9@sha256:f928393188edf404a004d4a692c8b633bd9c3ea4c8cabd5a9441c82d482c84a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5455803b15f596679c80af65bc7e4d600d68bffcdfba6701444ff5da039f5bb2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:5e1d6eea31cf8b7a3e5d1c94af072c81f1be1da47122938a2eeec7acd6e778c7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:a154b2b05fe49a472506ed9f211693057361b9a58b0fa6477afb7abbba9e9e54_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/subctl-rhel9@sha256:cac1a0a0a72004f64edb104385d2c0683a15401c8970777a2db2978b4fa32d33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:157ec65b5967f65026b2e6c8d688fa734dbd8d2b056960b43d2ee9672979d120_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:2629fcf4d38774d9d4fa5bb72bb664982b32b8b8e1018a36d6bfd0b05a16a1c9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:5118901bb1b8336f1a99f8757a32d61070fde1b4a26e40b7282aae81ae0b741d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-gateway-rhel9@sha256:7314924a015ddfc1dde55dd4991b9b3df8e8a279c3ce354d9d86ae66adfa46da_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:2d6f324a2f853471f3697da356db792ea9203939c4a12c02040c4cf62bbb9fb1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:a7f2ac46b1edce62e4a8707e940a3813016b6a7c7ee11225700c792bc449ee33_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:be69bc672cabbced9e23829820685b30183bae1910a8af9fed5c1eff3a11aca3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-globalnet-rhel9@sha256:ed6fa4602b7d1f175e8df0601be5b2c3e8ea9d906dc9cd2fd8a5ab76eea97175_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-operator-bundle@sha256:5b64e063acaeec1bae4ef902f3b482b47d85c0964e944e53663cff73f530a701_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:01a082229dbfbfee20345e1ccff5c8ac3ac3bd727a666d29221f465b43701133_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:100e10f6c2959526a2335d81d99c6887b16a29bd59e005e519140206d0ce73ed_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:2f772da0e95d6690c14966eaf7bb097a0c567a7077b93eb61d8bbcc552be4d1b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-rhel9-operator@sha256:60c2e8e50cec20d1c78df0629256403d667ea47989aa3c30c696e76ce5e264e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:30dfcfaaf77a270fbcec02e53c013af5570a65334ef666cd77c9bef0a54d3418_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:5a97cf1a1723932e74bb1fc4fc410df0d78dd3035203cd7684bc3d6485d6f2e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:83a6d00f217f3e9000d6e6cba602d52b65922290dbb0dcdae8ee12b1c8b383c1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.14:registry.redhat.io/rhacm2/submariner-route-agent-rhel9@sha256:c52a0fb2364483a9c23763e76bfeae9923a9ae3d35e646012c528f7cc46bcdc1_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/coredns/coredns: CoreDNS: Authentication bypass allows unauthorized access to TSIG-protected functionalities"
}
]
}
RHSA-2026:25182
Vulnerability from csaf_redhat - Published: 2026-06-17 06:46 - Updated: 2026-06-29 17:50The Route OpenShift resource allows to define routes to make pods reachable at a subdomain through HAProxy. It was found that the checks performed on the spec.path YAML stanza in a Route document was insufficient and could allow a controlled injection of the HAProxy configuration.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64 | — |
A flaw was found in the Go programming language (golang) and its command-line tool (cmd/go). A remote attacker could exploit this during the build process by crafting malicious SWIG (Simplified Wrapper and Interface Generator) file names that contain "cgo" and specific payloads. This could lead to code smuggling and arbitrary code execution, bypassing trust mechanisms and allowing the attacker to run unauthorized code.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64 | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.18.44 is now available with updates to packages and images that fix several bugs and add enhancements.\n\n This release includes a security update for Red Hat OpenShift Container Platform 4.18.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container Platform 4.18.44. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:25180\n\nSpace precludes documenting all of the container images in this advisory. See the following Release Notes documentation, which will be updated shortly for this release, for details about these changes:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:25182",
"url": "https://access.redhat.com/errata/RHSA-2026:25182"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-1784",
"url": "https://access.redhat.com/security/cve/CVE-2026-1784"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27140",
"url": "https://access.redhat.com/security/cve/CVE-2026-27140"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_25182.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.18.44 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-29T17:50:48+00:00",
"generator": {
"date": "2026-06-29T17:50:48+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:25182",
"initial_release_date": "2026-06-17T06:46:32+00:00",
"revision_history": [
{
"date": "2026-06-17T06:46:32+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-17T06:48:07+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:50:48+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.18",
"product": {
"name": "Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.18::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780986389"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Afd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780983178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1781004689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3A6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1780979654"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780986888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780985730"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Aaf0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780982486"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Ad9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780988444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780987383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780986976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781087000"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780988372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1781008650"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780981628"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780985169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780987336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780988281"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780984302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1780980850"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3Ab2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1780980905"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1780980461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780983562"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780979816"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780980202"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3Aa273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1780986002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Afb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780988443"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780988257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Ae60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780984788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Ad917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780983625"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780986693"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Ad29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780987901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1781012220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780988227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1780976183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3Ab3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1780976229"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3A92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1780976312"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3A7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1780976202"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780982792"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Afd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780983584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Af6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780987342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780988333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781099942"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780984764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780981996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780980841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Ab8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781082214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Af6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1780987151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780987220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3Ae06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780978272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3Adaef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780980237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781100158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780982109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780984220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780988701"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780988133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780988219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780982716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Ae0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780986561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Ac81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781088680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780986270"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780980885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780987281"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Add92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780987290"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Ac29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1780984867"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Aad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780981474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780983556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3Adbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780987916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780981034"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780988272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1780979790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3A9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1780979872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3A068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1780979788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3Ad2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1780979783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3Add2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1780979754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1780979726"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1780979798"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3Abcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1780979786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1781094540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3Ad65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1780979789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Adc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780987524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3Adda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1780979783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780983403"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780991676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780988152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Affee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780985169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780980231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3Aa7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780984698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780983793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780983163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780988125"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Afa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780981358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Ab48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780982546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780980172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780980562"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Aa1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780985122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780988205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Ab2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780986604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780982721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Afe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780985804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780985093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Ae97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780988280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780988126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Acce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780988400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780980934"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780985877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ab58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780987351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Aede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780987933"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Af52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780988143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780980990"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Aaad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780985353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780982757"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780984456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Adccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780981773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Ab4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780981694"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780983542"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Ac07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780980185"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780986225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Aee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780983250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ae3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780977570"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780979780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3Aeba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780980953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780981099"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780979780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1780988281"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Ad35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1780983059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3Aa2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1780983246"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Adde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780988480"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1780980793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1780979754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Ab9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780984949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780982377"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780988394"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780993424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3A92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel9\u0026tag=1780989572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780991991"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Aecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780982352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Abb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780980205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780988444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3Ae65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1780979783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780987316"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Aad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780987309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780986695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3A578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1780979790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1780979759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780983119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780981368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Afb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780997562"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780988367"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780988066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780984713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780983655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780984066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Acb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780984914"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781088553"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-cloud-controller-manager-rhel9@sha256%3Af8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9\u0026tag=1780979680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-machine-controllers-rhel9@sha256%3Ac28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9\u0026tag=1780979605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780983780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780984702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780979843"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780981417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Af35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780979815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Aab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780984511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780981067"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Ad770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780979746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3Aebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780984971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780988468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780988676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3Af48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1780980923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1780979698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1780980747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1780980051"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780988313"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Aa5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780985312"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781087154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9\u0026tag=1780979649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9\u0026tag=1780979649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3A5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator\u0026tag=1780979733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3A5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator\u0026tag=1780979733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cloud-controller-manager-rhel9@sha256%3A002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9\u0026tag=1780979670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cluster-api-controllers-rhel9@sha256%3A0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9\u0026tag=1780979677"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780983425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780981984"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Af13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780980232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Aa5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780988399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780987995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780987348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780988219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-csi-driver-syncer-rhel9@sha256%3A6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9\u0026tag=1780979672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-problem-detector-rhel9@sha256%3Ac2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9\u0026tag=1780979656"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780986389"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780983178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3Ae4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1781004689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3A45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1780979654"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780986888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780985730"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780982486"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Acf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780988444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780987383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780986976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781087000"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780988372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1781008650"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780981628"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Ae634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780985169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780987336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780988281"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3Acbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780984302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Aa4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780983562"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780979816"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780980202"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3Ad409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1780986002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780988443"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780988257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780984788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780983625"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780986693"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780987901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1781012220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780988227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3Aa6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1780976183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1780976229"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Aad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1780976312"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3A582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1780976202"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780982792"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Aee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780983584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780987342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Ad339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780988333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781099942"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780984764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Acaa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780981996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780980841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781082214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1780987151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780987220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780978272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3Acfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780980237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Aa2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781100158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780982109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780984220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780988701"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Aedf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780988133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Ae3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780988219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780982716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780986561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781088680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Aff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780986270"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3Aa70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780980885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Ac4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780987281"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780987290"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1780984867"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780981474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Ac4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780983556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780987916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780981034"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780988272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1780979790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3A20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1780979872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3A51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1780979788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1780979783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3A36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1780979754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3Ae21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1780979726"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1780979798"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3Af5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1780979786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1781094540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1780979789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780987524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3Ac9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1780979783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780983403"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780991676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780988152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Ac55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780985169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Ac8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780980231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780984698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Aeed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780983793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780983163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780988125"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Acdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780981358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780982546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Ac12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780980172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780980562"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Ae5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780985122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Aba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780988205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780986604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Acfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780982721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780985804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3Aa585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780985093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Affcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780988280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780988126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780988400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780980934"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780985877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780987351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780987933"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Ad6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780988143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780980990"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Ab05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780985353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780982757"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780984456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Aba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780981773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780981694"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780983542"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780980185"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780986225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Ae31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780983250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780977570"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780979780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780980953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3Af0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780981099"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780979780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1780979754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Af9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780984949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780982377"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Ae0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780988394"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780993424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3A9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel9\u0026tag=1780989572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Acd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780991991"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780982352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780980205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Ae126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780988444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Afacc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780987316"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780987309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Aa7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780986695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3Aeffb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1780979790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1780979783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Af21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1780979759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780983119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Acdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780981368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Af09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780997562"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3Ad1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780988367"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780988066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Ae5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780984713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780983655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3Aa93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780984066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Aaa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780984914"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781088553"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780983780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780984702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780979843"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Af82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780981417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780979815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Aeb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780984511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Accd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780981067"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780979746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3Af411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780984971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780988468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780988676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780988313"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Af4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780985312"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781087154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780983425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Af0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780981984"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Adc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780980232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780988399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780987995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780987348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780988219"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780986389"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780983178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780986888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3Ae6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780985730"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780982486"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Affbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780988444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Aa56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780987383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780986976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Ab331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781087000"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780988372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Ad0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1781008650"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Aa4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780981628"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Ab54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780985169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780987336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Ac98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780988281"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780984302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780983562"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Ab5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780979816"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Abed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780980202"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1780986002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780988443"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780988257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Ad1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780984788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Ad599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780983625"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780986693"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780987901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1781012220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780988227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780982792"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780983584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Ac0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780987342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780988333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Af4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781099942"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Adfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780984764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780981996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Af2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780980841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781082214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1780987151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780987220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3Afa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780978272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780980237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781100158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780982109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780984220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780988701"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780988133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780988219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Ad1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780982716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Aebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780986561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781088680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780986270"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3Ac03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780980885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Aef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780987281"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780987290"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1780984867"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780981474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Af31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780983556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780987916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Aeafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780981034"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Ae57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780988272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Ab1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780987524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780983403"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780991676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780988152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Ab84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780985169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Ac03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780980231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780984698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780983793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780983163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780988125"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Ad98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780981358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780982546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780980172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Af8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780980562"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780985122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780988205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780986604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780983542"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Aa5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780982721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Aad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780985804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780985093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Ae2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780988280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780988126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780988400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Ab281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780980934"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780985877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ad7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780987351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Ae490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780987933"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Af4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780988143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Ad4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780980990"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780985353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780982757"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3Ada9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780984456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780981773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780981694"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780980185"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780986225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780983250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780977570"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3Abb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1780988281"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Ad955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1780983059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1780983246"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780988480"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3Ae6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1780980793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780984949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780982377"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Acdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780988394"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780993424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3A26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel9\u0026tag=1780989572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780991991"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Acdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780982352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780980205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780988444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780987316"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780987309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Ad5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780986695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780983119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780981368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780997562"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3Afc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780988367"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Afeec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780988066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Af40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780984713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780983655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780984066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Aeac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780984914"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781088553"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780983780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Abdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780984702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780979843"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780981417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Ac61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780979815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780984511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780981067"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780979746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780984971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780988468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780988676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780988313"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Acd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780985312"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781087154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780983425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Abd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780981984"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780980232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780988399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Ac492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780987995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Aba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780987348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780988219"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3Ac27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780986389"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Ac034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780983178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3Afa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780986888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780985730"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780982486"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780988444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780987383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780986976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Af5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781087000"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780988372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1781008650"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780981628"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780985169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780987336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Afd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780988281"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780984302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3Aeb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1780980850"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3A4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1780980905"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3Ae91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1780980461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780983562"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Aee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780979816"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780980202"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1780986002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780988443"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780988257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Abed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780984788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780983625"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Ad12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780986693"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780987901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1781012220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780988227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Ad15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780982792"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780983584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Aa451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780987342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780988333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Aa83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781099942"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780984764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780981996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780980841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Aed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781082214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1780987151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Afe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780987220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3Afed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780978272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3Ac1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780980237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781100158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Acf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780982109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Ae3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780984220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Af5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780988701"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780988133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780988219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Ad5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780982716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Aec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780986561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781088680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780986270"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780980885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Acb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780987281"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Aa11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780987290"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1780984867"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780981474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Ab1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780983556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3Ad004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780987916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Ad1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780981034"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Ad630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780988272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780987524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780983403"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780991676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780988152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Adaa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780985169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780980231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780984698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780983793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780983163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780988125"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Aead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780981358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Aaa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780982546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780980172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Ac7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780980562"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Afc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780985122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Af6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780988205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780986604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780982721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780985804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3Aedee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780985093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780988280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Ad01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780988126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Aa9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780988400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780980934"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ae73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780985877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Adb564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780987351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780987933"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780988143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780980990"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Ac31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780985353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780982757"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780984456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Ab71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780981773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780981694"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780983542"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780980185"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780986225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780983250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Aa634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780977570"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3Ac694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780979780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780980953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780981099"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780979780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Abbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780988480"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780984949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780982377"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780988394"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Aef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780993424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3A2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel9\u0026tag=1780989572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Ab6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780991991"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Ab30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780982352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780980205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780988444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Aedcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780987316"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780987309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780986695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Ad801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1780979759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780983119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Abd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780981368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780997562"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3Ad7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780988367"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780988066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Aae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780984713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780983655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780984066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Abce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780984914"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781088553"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780983780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780984702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780979843"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780981417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780979815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780984511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Ae78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780981067"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780979746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780984971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780988468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780988676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3Ad6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1780980923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1780979698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3Ae9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1780980747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1780980051"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Ae10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780988313"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Ae17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780985312"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Aa23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781087154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780983425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Adcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780981984"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Aafc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780980232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Af032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780988399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780987995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780987348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Afd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780988219"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-1784",
"cwe": {
"id": "CWE-15",
"name": "External Control of System or Configuration Setting"
},
"discovery_date": "2026-02-02T21:05:20.978000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2436075"
}
],
"notes": [
{
"category": "description",
"text": "The Route OpenShift resource allows to define routes to make pods reachable at a subdomain through HAProxy. It was found that the checks performed on the spec.path YAML stanza in a Route document was insufficient and could allow a controlled injection of the HAProxy configuration.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "ose-cluster-ingress-operator: Remote Code Execution Through HAProxy Configuration Injection",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-1784"
},
{
"category": "external",
"summary": "RHBZ#2436075",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2436075"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-1784",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-1784"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-1784",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-1784"
}
],
"release_date": "2026-06-02T07:12:31.172000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T06:46:32+00:00",
"details": "For OpenShift Container Platform 4.18 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:2a7a95814b1b307813552472d18ef7aee7930748f707d730c4e816bdced1dac9\n\n (For s390x architecture)\n The image digest is sha256:363adcf59338bad26a33111d98322c8501d16707b295bd4328b30a04d6f1ce51\n\n (For ppc64le architecture)\n The image digest is sha256:90fc3818102c967faece0374edf50e68aa0d1b6182fcb27793941db409515314\n\n (For aarch64 architecture)\n The image digest is sha256:f0ce3bc7f47d2bda4696f49eba84569ac87f1b2b42852e9f8756fe0a3f9a853f\n\nAll OpenShift Container Platform 4.18 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25182"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "ose-cluster-ingress-operator: Remote Code Execution Through HAProxy Configuration Injection"
},
{
"cve": "CVE-2026-27140",
"cwe": {
"id": "CWE-641",
"name": "Improper Restriction of Names for Files and Other Resources"
},
"discovery_date": "2026-04-08T02:01:26.299804+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456341"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Go programming language (golang) and its command-line tool (cmd/go). A remote attacker could exploit this during the build process by crafting malicious SWIG (Simplified Wrapper and Interface Generator) file names that contain \"cgo\" and specific payloads. This could lead to code smuggling and arbitrary code execution, bypassing trust mechanisms and allowing the attacker to run unauthorized code.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cmd/go: golang: Go (golang) and cmd/go: Arbitrary Code Execution via malicious SWIG file names",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27140"
},
{
"category": "external",
"summary": "RHBZ#2456341",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456341"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27140",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27140"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27140",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27140"
},
{
"category": "external",
"summary": "https://go.dev/cl/763768",
"url": "https://go.dev/cl/763768"
},
{
"category": "external",
"summary": "https://go.dev/issue/78335",
"url": "https://go.dev/issue/78335"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4871",
"url": "https://pkg.go.dev/vuln/GO-2026-4871"
}
],
"release_date": "2026-04-08T01:06:57.893000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T06:46:32+00:00",
"details": "For OpenShift Container Platform 4.18 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:2a7a95814b1b307813552472d18ef7aee7930748f707d730c4e816bdced1dac9\n\n (For s390x architecture)\n The image digest is sha256:363adcf59338bad26a33111d98322c8501d16707b295bd4328b30a04d6f1ce51\n\n (For ppc64le architecture)\n The image digest is sha256:90fc3818102c967faece0374edf50e68aa0d1b6182fcb27793941db409515314\n\n (For aarch64 architecture)\n The image digest is sha256:f0ce3bc7f47d2bda4696f49eba84569ac87f1b2b42852e9f8756fe0a3f9a853f\n\nAll OpenShift Container Platform 4.18 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25182"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 9.0,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "cmd/go: golang: Go (golang) and cmd/go: Arbitrary Code Execution via malicious SWIG file names"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T06:46:32+00:00",
"details": "For OpenShift Container Platform 4.18 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:2a7a95814b1b307813552472d18ef7aee7930748f707d730c4e816bdced1dac9\n\n (For s390x architecture)\n The image digest is sha256:363adcf59338bad26a33111d98322c8501d16707b295bd4328b30a04d6f1ce51\n\n (For ppc64le architecture)\n The image digest is sha256:90fc3818102c967faece0374edf50e68aa0d1b6182fcb27793941db409515314\n\n (For aarch64 architecture)\n The image digest is sha256:f0ce3bc7f47d2bda4696f49eba84569ac87f1b2b42852e9f8756fe0a3f9a853f\n\nAll OpenShift Container Platform 4.18 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25182"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9b4c19f5a96a5387c3476348ccf776e74a77bac2d4486724986c167b577362e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e448a7b2e0cc64494821d4e42e38a7d70842f568cba8feb6e07ceeb05479f60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c034c15f793fa0892c0dce1161bdab6eedd847797ecc477622fe63e0525283ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fd32d959d0c9f69c5c37f862fe2fc07c3a17448c127d68533fb445c1d26e3ac3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29319c83c1b32de57d726a33b713a3744fafc02506156648e84a64afcd151b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:318839a36cd0c975b7f966f6d6420dd490829bfb2a4c952d5fedf4963dee3fb5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:556eddc19bb738768ed3442980213c336b18510246e3f2169d875085531020b8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fa662e22f6bb8ba9cc19d5322c3a5a6c65b6dc0df8415605776c7a6c21c353f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:40b58541fbe13d43c355406ebd8a094b87b0e64738bf545b7398383dd0c3ea90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:65e0d4314231e26b6695a6dd3c275b6bbcebd8c2b6878adbea92ed79e0db2df1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b1415ed3a3c6a4688dcc4b7fadad32a30097bd170e2e0d5abc5a8507d8eb57df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:dc89d4d2f305f0bbb703ba626f18257df3d654ad6e65b9dab084eb708af31ab2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0aeee70fcd2f172deddec0253e7f91125bc359176b08a55e6e13badb9a41cc5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:15a265743af6c28498f361c82101eb97c4a81a914a4a0fd5ec56eec86e36ec1d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9e0878f9b48921cc4a7b0e69b63e0577b8b49d5328caac39fc280833fdaef750_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a7e50c101b30d6c9a56e94e60d0dcde26c133aad5caf58f51a05ae8da73d19f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:14ffae9e29679a7414b87dd79425072b3b0340ba7a2f89a594fce523c97aa276_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:367eda543131d62a1caebffd181c9fb9ef43ae254dde1f1478809ba23c922504_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6cb52bcf9494c55e61642d2629c8a4e236060e5bd0779b2bb546812bdc7a474d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:797c8226c1879b9313a7eb692164cc2f77c376e722886cd63fa04ffbd54a112a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04282ef0a1ae28b7abbd1744ff3a22026e69660e30afeb1664a88bc9aaa8de7f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:75bb1db9b46f0d2d62dc2ce78eb5a3d6da7288c90263dbe66b938313c5dcc786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:8c433d9a8380b69b501f645aa406773a71fe6f8c9aadea30f95eec13ecef492b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fb8dc6150ccb18ffd8bf2b5d14907f3db88bfce22a5ed168b4ef6064e1c2134c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:350b75d9cbd494b8a8cdeeca04e57e8ad28501b2722aa871a23916fe9a246ab6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3c6a50b285443b0c5340237e10473f66903581047a19eb51c6707aa870b3f691_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7cd0aaf53facbcb5397607358423d8b95905ad0a30f006a31a52710b66e18620_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9eca05e46c6c39e37cfaa6d0f8432da8bf5e23ed3124ba6416a8a6da2adf5b81_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:4b78917fd199072854d5550dd3ddde54e56bbadc007e1eeea92d6be47d36eb1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:56d7baefc4b4c8dda71290498c3edfb56d72c126cc2d811b48060e47d609ce9d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:a634f063ef0812d888777f9e09588c8f79c22cb998688eea1aca62d567d1d936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e3c0f6317a7a71380a3e3a2841427b025a9e113f9fcba978d59a7deefbc82ea8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e8e10efb2cfc1c92b59bc518a48ea04420958740aac9e50e0f1087fe20d7975_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:93e85acbceb36891c91e4cefcdf29091c59911eb06b03f7deaf3d248e4e002cf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:95527f0adfdc3178e2d534d6dff340a8088fa2d2b6f142063fc8fca105f9c5df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9739dba516a48e93f3bb472be0455263d3ed4d1cd5acf1b96fb9fc2c1ef748b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:6fbe41f18089f716fabf9f11f7d87a2ef5fa6b0ebcc8ff8677ef1365d54e48a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:97b119c5e0ba9aa52deb774fb171156cad1273d4a112d8dd94b4fb5ada6f2464_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:cdb26320b29957354807cd2276de4f16c8ddbccb3f15ec15f22c500d9794cda9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e0ea6f41af69b43872dedf7bc4d461302e5834b3cec7cf36dac5953b69d80189_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:170553d4d6f5e6febc1a641b25189d60d999fd91761833134b6ff0dddbca726a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b30668b602fb60a494648ceb17d55b4a8fdcba18503c985776f804a653845623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cdd1c5ebeb0b1053b5f0284fecfa5303659b8b2031efee982bb274a598f0d5e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ecabf73ad178a5fd9f96b239d5d51fc4d1e2f24d3a950291ea1a3ae823def89d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:33ed1e10d3f7fe7999e2054b839e1dbb37be5e8db75c3fb3406c5227c09d989d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:34bd23c37aec192ca01b9552b6d0afbd6f67cb1c8e446c362142ebb8532498cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:edcee66ea5b28da320d13103132cec64fe750bbfb67bd9b9069ee683fcb00eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:facc768b406330bcc3265402a1c6e1f666c37963ed32720b173f2e6feb2c3626_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174b9257d5a8e1d6a0def16059e98bc1a7fef2d906e1974466ef64e93c38d770_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:385b2de57b976eeb4d2bc9f9896e330e2d87f7b4905a0626e43b45dbccff7a59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:57bae92bf672456eec22364e6624dc1e3848fe3a2ebf327b4aa78e96c8b434de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7b5142cecce37b0f4ed20a303b24051eafdbe66b2e878a6f93f49537e024f543_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:134e9daaabcb269c6ba21416ba9c17153359fcb40620a9f4a94cbec028f02bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:22034128704b7a957514c12bd5d78975d71ec2c9f4a41aa8e3faa6f8a619c796_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2c315612c314b4308977a87669a47762451a40d401d4bbfa746096d0d777b424_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:fe8d174480fb3eb64e14e740ee8e4eb9d7272958bd0601c558bfcd053c995561_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3eb4b089474108b1ffa3badbfb3fe3ea8c1b41914dc5b2fb6f6cb9aa4deab403_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:3f0587780c5d8e7c15165fa1dab0deac7e51c64fcb887a60224f2ce0a43e201d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9bd59b629ff1ea949d3c32ad1a10a4fff4cac6a4a170b445e60828edab860aa6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:e10f1a7419ae1e42785b744f73bfdd2fb3621768f909e5f0452afb6e0e97d2d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1f909370bf3cf7d45ea9666ea1df3dd53917644554341249760466a1f407a296_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6bd85c136120b72038ff293286e49990f58f1ef0943a44c2789413990e68b344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:85b5b4b4e2c6e7e3b4c717d564ddaba00699b5894829067c99122e25839fb042_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c29b97cab9d89dc55f100cd17ed37fab0bd49dc5f0c119bf975cf683c0996873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:406500368115c466271ad1f807aada19d3bfc2dcd3bd7cdd1ae477bc2f96a423_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:74f302976026fd150000499a7b0949080409929eb26b14db85f5738d7f07b185_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8f41f461047d250a8dffdbc710d327a2213a1eddb373c6a76fb5269a3989d372_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ad878a3d4424e61c84e2cef92b2b1ba20b5502f214e2dcd0d0e18df9f70f39e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:62daee50e8a47ab765136e43342abf270e07648c4db56d876e2d6235af0af704_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b1d2d70549e04575606b78c87a88665809c3557580aa777f4f91f1e4a18417c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c4d5be3bab7126e610998027a61e90b5dbd1fdad284bdbab2675a9fbaecde5ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f31680d06319e920f13972b2f65f541f18f3d3371951c7026e64d9fa8cee8ffe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ee8298f02a74b577e78698156afa04722a871b604d7fda9d059eb47938bc853_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:95baef3cad25908495fe36999ddb376769c5988edc8831095eae24c1adbee5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d004faf061c3842b76bb8148553fb8efcf7827f016039abe4d7ad0cfdb6cad26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:dbabf9512414b7a822525d6ed10900a888544b4bad45fdcc9fde816814acdf30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:072d0d8be07c78bd674185c6cfdb484593d1bb31620656982836c4aadf0f0f68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:11de218c187af197d21c010dca9a23e4932ee66700e0cc3268ec701d70a03343_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d1b3b192d87a26743b8e43001a76cc153c3759ccdc982fa4b2557c7ca337a41d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eafae4f3b2a775faa06c269bb1ee0d465fb5069254d2e6290db8deb7e4a2ea53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ded20c38b7c18609e5e02aeff44a53794db8c9d183ef55e65910da9c9891f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5d67851ed1ed34b8b686ea0fc0b3391927c18a4262cf9fd8d22c756fb8425bf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d630e993b10767aa1c7e8d781bb52cd4128bbd2288826c264820b6d5e020b480_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e57884f316f52a2bffdd30a4de89c22353f3e2cdb9c6ae7531b2e03468b3eabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:434755e73c2e54dfec08175971332930fcb12962393f81300a969122feefe776_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4f1f5ad555af4f35a7b30f68f190d7387f1adf1ac05423dc0e5e11c4d50271ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:20483949a9f7c4e275e1e5d81ebf0539bfde7f6c466f64543e4b6ae6749801ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9652b27920fdb39b16f2ae41b352382b99e1c52dcd13640ffcfff8215093d51d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0740616979ba32b48118725748e4f355d2db5d41b548020ff10a68d5cd4a6ffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d2f7c9dca24e88ebe3da18327af2beff2c159b5459d22e6dc1eec8aba669cf63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:068d2f386215b6b4d0c05ebba78b252059f0ae03a2eddeda9cc2596e50eb8808_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:51dff7288b4477826dd6782a77b0d3d6c1379e35cdddb0d94214fbed7c28fcde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:36ad06f9a53ab6fcfa2863d8e3a5779da458f38445258ba6a2c2604eba988ec5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:dd2911b11ebf2c9e03dd23a6547dbcda60b1aa3237ffe9dff516593192c8959f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:92347de385258ddef1be0dfb2a75d54d02fe40687b32a481ea43d0913ccdb805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e21eab62ef63f8547161faf7eb375f1eea2c8ac3422e8a1a73375d5adb32c025_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:01d75fe96593046c408b1b6a9775076e93feb87c78742096008c4d4fc09da1fe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:9b8c60c7b9c4b5e587cc2dabb665e320a9c3a7511f4702315178ee02c19396b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:bcf7172240786b7cc3106ab324ac1d1c4629f30cd5321e8701f495f750e0c4d7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:f5ccde86f865d1d2965344bd81b4b0606f801fcb3a8337ebc9b60e46063a4077_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:35dd102fa7f7c91883f268ebfcbdda6111bf8ae708ac7d01c43734cee70a926d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d65f462cdf868bd9ed19f744ab77f311af0c7b5428cfbe5ca126d81be87a0d53_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:7d0b84f95dc4b28f08529417982a27c794bb0588040c9ba6dddd9b9c875989d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:861cdc4123fd78bc5f53ea3ad8dc1453e398eb286f4b02daa21da4ccf5ed933a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:45727b4dc94519a55157f077a0628d91bd3ee6bee4ae13cfcc321fbca1b58856_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6bac8501753cdcbecd83bedfe38cd25c5655a376827a4b2d88c60fd280872d77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:503ab45e1c62e28eeb722c6ee4ebca3bbc10b01a98baf9bd49aab8eb1f68a11b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e4aa69f0dcd638b825c8407c1f2bc71899f04686858c4de4d30fe82f6b46a146_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c9559f4a6d94821634554ed73ee938cb401557ce828b2e6dddbdbe8e90a4ee24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:dda7aa1a252fbd164c8dc9fd40b225369d3bb5c40ca69b890741128cf122fe7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0b0240821f16907bd0b66ffaf2aa1b396a12f926cb7d3436b67a8d5fab2b97ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42d8bf27d12d770af0a06250507289086978a1b2e327d66ebded5ee91c2d8805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:610e24eaee8d5026d0f577ef28d77c7610b25ca5bcf8aa16348e99689d20a3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:898bc7a63c93f4739dd1f91123a248b94dc5c7d365c8ae472d6e882e9cbf7e5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:039a0492fa76bb2b8dcf7aaea576fb7d9f1c33814c38e36827ce04770605ca60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fd5a06d4d516d672a66b7053a71f84be3da219a55069810d8fe6d011b26614e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:13f73bfa6f8d6c824bce33af853dbb636b957e2a24abe1d100a693e44eee6712_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3498f0a925e905daf343f5c84a5afd014a1a438407d9c5eb6ddb5d9129a568a1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1f0547655bfe361f4e1982f7d3e71c8617c863fb96a283e2fd69fc49826c3f06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:63f686198f613883c388b397d91268315a574a77260a435d6fc04aa5bbc73e7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8cfb51f8dcffab0b4b256c419f18984ddf51de9d5d2cee4e88cf7ab493f502ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6858dc9eafd636d6a75dd80c65a2e933b51303af2be8244719cafd5049653d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:055008133a9d3efe29619a307a0442e8b2fb2d989319add259ddc2f7c32c10eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4ea85199fb02f919b01d7be3dd3268f8119ae386786b621cb591ed2d395eef9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:69820c805381ab4aa8c6227cbe728310d139688e2588d55677a9cc249bf8f255_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9e38510c20001f6cab07bb79e975fd92dee88d6a9cc04cd09dc9de1f941e4e24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1165cc285e896f80f09f742f0db335c6cc63489921339784cd6a205d8659ad86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2bc11470284d82d6218a88e2ebaf2f24b480ce298deedb4ac0d9b61b6c579207_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8f5558092ea5a0328decab3ccf94b0bb2d43c0be66df312ee1878f3c5e9d60d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:af0cc2f3c8a4c65ee558e41bca2370fed306a14d7e1539880182c46734c33133_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b84966e0ab52009af978b24f475985c7a1918154d46fc591ed2a4658dc30b3b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:c55c99d101022da0e40b543ac2179752c3e96f7809e69f0fddc6246e2a3ac3a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:daa1bcbf34b3da70a03194afffd3634b1a92d67837dbecab8ffb406a0b286c55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ffee5a723d0c5eceb7e7ccc86aca1b20f4f687780bb0aa28afbbbf51675a48f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:73857b5fedc952cc4161d59bb7a06a99f7f3c40e55f358528161dc4960bf8b55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1254e006f749772574940f91a64b15890b506c8369061fd12897301b618e01d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:cfcc095e586581dbb2c94a6afa820ad5d5ac00a84894d5042fa3011778f5dc5b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:daef21c3fdc525a8f3d43280e95acd34fb3966aad9926611399612211cd7a92a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:26b6bca61f224e7fe957efbc45508e4b73d1053e62430d042aa5f84345741562_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:27e71eed9cc2a9fd762a399cefa49eb92d62f9685cf878c3220f17f4a7601131_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c03c8d9860ec465701c6b639dbeffe2297b987c742aaaec068d96a702d99dc10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8d8e323583a3a51b571b6ee638aadadc61c3fea0c3f3a5dc7dbb5c3042f4154_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1857b1b61cbaa93c30590e893ffd1ab87abebb8a685f55658bf8e8d14c2c1d6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cb6fd38cf08d7c5a8163348b8d3a2429932c22d8a6d63b0e4e0f37c5e135fbb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:829d66f21d3621a8b4986d5697bb8636762feb76de4a1af9d6425db02d84ef52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:eed00b721ad06350e9d1be06e00da605527c3619cca039f7f03365ef77438a43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:117ad7e80373da487a7eee49bef5680f95c0a4eb9d1a722ee0f3c9962710d2aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ccf9b30e8858bb8e060ea460ab9635ebc9676555b3fc2aee15b9aeb8335b8c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6a41b7070eec743cdbf457b9d8871cea7cfe99f12306e8b1b2fb80b2582ad5ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9df88ab2bf03e39a6c5763e26a7a482774d82ec16fc05d12aeaf14bf28e48a29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:030057f967785d42eefd9b2459f3979be0653a1114b051486dc4b6d1abc47c53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:363d9ce54143696e482d94db04c8e96322f7fb8c727a3c4ab85d66a126a79662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3e3efe3dcc1797a40719c629b98cf94ef975d216151427386aa917f206f4ed40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:604eb2241392295f9de66b565cf363a6a5ea918fa52c15021af571e36c5cd83a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1b7351e2bdb51ca38cbbafb281fea3b6e9209b42a2fb6b188e1cb135f53061be_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:474d7bee7bcc8f70b8de4f2661eda13f6131640f7d8ba034c3f7f1c0ce6b9c74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73950bee1e4fcfe2fdfa8632ea828f03dfdbc9d38d639b71ffc6503afc59ea47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c27858256b1756c878788ba1009a092e607fb968a0b0f7d9c14d2400ca9d9f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cdf791e1783d13724c146e7ad75e7f51a73adfa4147e4f80a360a01c5bd56aab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:d98999ef1312b29437a5baa781c127eb097fda9af90d778a29b9ca5c16547061_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ead9679a79386cd55f6b0c51cb01140a8fbaac0bda12dbe1696a546d3656b1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:fa327a9adfbcd8f2028ff5b40dcc8f390ca6056962a4b5284a48beaa9c197b02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:609724cf36384051ba536c78e2497397583ebedb363b5076b5e28a931b9fc43f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:64cccf70035b7a41e4cc00729433a71ebd1f872abca00a9e888d65b760862917_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa22575e0c7e770e3ed36e7f64a6836a7bdda5f9f768553fff0fde6ca29585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b48ff8f826f113d14e9933359ca91dfe16496a3d0f8915452d248d56d58afc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:277dd1d9fd8d01cf92170216ce280ba604d654cec12eaf9679f7873b6e8c6b84_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:59855a79186644d3535e0d439d6a2b54861542903b95eb631789323138718f38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:6851fec0c8e9affdb577738ecb656b2be4d17ffc856d225cc64adf954985b420_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c12c1c442a7cd79219ae76b9b777ca804ae57ef1a204118cca3c9d91f9f63dd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0f3f3de2caab607a84a6ecb0f363cc6318d4a01875166853a5d16ddeb967e2d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50413f9aed799d338128e3416d0d3903f0d970f23bb184f891ca6a7a2767ded5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c7e637f38f01e650d0c20b354f99433aafdd050c42a509ee882c06923af7336c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f8f75f05f376ca9817a99f3d0e215c3263626501f1bd6b30de5358dc0b3ba5ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4d7c2a446dd006e4f0914143de854ab49132f34041ef0c8170ae0068f2485bb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a1f3786ff6299b7b46377440cb53ec874d5659c797d2041e719e3ea292b89158_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e5aa767a73ffc1b1d511dc049b4013f20041f690011c96f188064c4b632c6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fc238ef0303af37b6541f25b5063584ee9fc3bd1d1686156c743797b86251eaa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:758059a2a514c7a283df13d240bc2569e5627608943aae76cace2c2daca88a03_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9f9d177c8493c4ed4236f92c79b158ae732b959289052c0dc1b7bbd07fa2d712_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ba6e025d8da25bf538907c01f0a942c13d437138d69b74761e81bb688be73d74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6bb58a7b43c75f070b9a47c9e53d94ec54149742a791574644046ac3c36b991_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:45824b25caf6733acf8175a06c3df868ff0a4d46e18fc2ef299f466a137b9d63_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6f8612c437bfb5f8574e9a656a2dd2172fbec3f5a5ebb446c417ff786be12de7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:70e965a99c93c7f46a718563925a0c81571ae065f66452c30e7031d87338f5a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b2088dbe4b8fe286ead5711976022788e15218a3665c9edc2450b535a0d9a44a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:50deaa490a76c6049d4fae64539d211eae5a1476e74d7f076e1bb7910c894f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5eab512f84d3f900b1bf95c3c7ee072db32e8cac12eb1a62e3ba2e817f36c2e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a5e17246b9d9ba0514c7f18dbf22d0a5f38a90978ef5f4f5f47bfb1caf707bc4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cfe37a26af6af9dffb0a91f3a4725a84e9ce14404303f001f0079f10ff2df3dc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a3e5fe7143a51686aefc2710a80e921fc848e26b469c575f9265860ef277f97_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:305316af45fee97df70e2f07692601d81d868e9c67ab1ce57a689a1eb3f0c70c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ad2b7d3e15c81d73d9654ac84d5bd3d95e4c7e2e314495ed042b27c665d77c66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fe5a6577a90ba58064646a99fa8ff2853cfb25153b99abcbad261c8382c770e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2060185ea2b5d21c8d75fd06fceb5c1efc4340950efff05478fe45ba18a7658c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:cf3c3c1bea91f720ef7e8c337bdb0b7b135046089884067cda10285bc3bb7d3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d9ad101e3a2f751f4f06f68643c6533ae6bcc9a8304e7e980162eefe04a84fa6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ffbcbfb8dc052e6d3ad86791333dc5bd0f51a5d49996fde706b838f195a6f805_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:757aab401564954cd7564bbdc5782176c2a7501869b77c230fe8905f9b0ca13f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8f1490303679e2a0a3de75e3b6226862a09ebc605ecbe241b364e3e1bd0e7e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:a585990a9645f5444159c925b0b512e802bcbbdfe69936d02e68fde2f721df27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:edee531eafd6bfd575dc28b67cafb74f7146dcb7e9553670a1132533e7d13b0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5423ead44161e1129cec7adedeed9c6b4079f9a4cec9ce6ffe099ff0387e11fb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e2b7dfaf4a72c6382a11332674851f54ca1a0ae4d9fbc23530bb7d2853219a79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e97c0e53adff96f67bfef7192b438860500ab27a39659444b9c2155b45c81d5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ffcb67dc130d8b45a1e13af2d581db114bd0b5a8e16fc429f1558e3139aebaaa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1b4ef8fae4b72915fc9bd91b33c46c729ec155408d6fe32364b6bd6fcbc39187_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:24d66530b3be9f59c29f22f049deb42afc65309b66222f1c4540df5565732cf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5a9f454c3c807600028c2423a94d2f8295e6635ba9965b813c8f1f03bc88f998_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:d01cdc058df28433600d58609c6b7a567732762693076356d5cd892486af52ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6b5635ca680a9fd1acf4258b040a6c93a93484e0025805248bae6c9e02c3e6fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:92e19722ac39feb7f5239d5c51cd3d177501f4f027e67fbc011c32862ca6ca21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a9f21ae6d2e4fcbe6c2f48526b21ead4e67ac5a6693b6bf82e201d6be25a41d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:cce8429cf73ee47cd1da2a97c3b05a258a84e8afa64f9acee228a494f5ec32cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:027efe8279684cb0c9f415e3cec60a57e19766df1c15bc8cf759e881f700a8f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:5ce97382c942cd807aff9df939742c459a495e6583727fade61c7a8ed28af79e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:63424264eb05fadcbb01c687bf728d0ce9cf01b51fcc552013ea0bbff7c3681b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b281b58051db29254843ae77edb347d6c80b12107eb3481ab9fec0b53b372fce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4da4bf75ed733f171cea30f5967cd7dc191d45c30a05fd730c6030d713137353_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4e5fdb6b80b1b2be2da7012c455e07aed0572c919b13525f93a65e757e55b6d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50269e3559b48f1da30368d99e8e6b2fd17031868a175ca27c934d3e1012e3bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e73e84d5dc30345cfb6cbe7a6b717385a4af59edb513d68aa2f3f76f7357aaf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:0dc9a4d5397754b41ed1e1e5083dc5f117891ecab5f07828fcf3df801346edf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b58364bc43c67ca70d3905984660598a1d8ea439d4f2e9606089e9fcce284106_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7c6ccd218f80bbb9d2c93fe492936f888da4bed51bf36d4702cfa1faf965d46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:db564dcfa5ca0af243b2a5c7153e97d9a21a44bfd7a27c196b5a2cbd336ef318_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0e4d5e7d06b98d0c136ec448d3263495b2cdba78a3706927e4dd58ecc90e580f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:89a29adc6f21000447d37e4ce1c5f95730d6e43218d9d0b5747e2ee2998de7de_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e490e30ed70455b22f5ead0331431a5f5c46d9050a0deb164673e11937459ed2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ede4b5dbeeb9959b24a2ecd826b1cb67b8be1e826c5b6db7e2cc869abb44ebb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2d84e9555f1d041582bfed4360f181b9bd8fa186c7c2de741e81721136493c33_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:372c224e151f9d16022a44f0aaccbd38137e64ae409861030e3a56fe166ae737_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7c2502181728c9891c676708a5798cd195aa05105be723c3475dbc0df1f935a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a56334e3a3a58ef47cfa94a0d0297f4f5ece1889d1d62b941119a2cea737b9b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0ee1439516b9169ae6bbc21669eb9923e888e0d1235a9e777cfa9dcd4dac3727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:10792004e60fa29a9291353a5da638821358a6955904dd89bbd5b2b95015c192_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:72e128fdd28d606f7524bb0e00d8030564789d2b0177d9a2405cc156c25ea0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86d69699ce2e9c5d600a44f6f0e637df8ceb94b0e10941dd966b12f8c0a1f5af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:22accbf7126ff0133268b23bc6b850b6df1af36cfed824b885567f9fe82bc149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ea88c0cfdb9b74ce1ad356753a80a12a28e259065d98b3a5b7a5d7ca422e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:b331ba2b6e2933ab1174110fdddae55d66486454dfd658854344bccdfdc4a417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5b394e8e6e1b6bd6e5853683577b5560d7e96ef204e184a6c4b717e38ee1942_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:602de39730fac79e549eb25de88659dc08e75456b63993353a18787512c95094_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d6555ef56d013885aabcdb8f6ab9e319328b3b277d45c09bb1f3083fda353b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f4f90eab2804c913fbd0c7a1d9c3e8493ddcd5609dc29b70ed937f6f883af8f1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f52d12a7d38a9e238e5a43204914822425e7d0c0022a834c9725c44bda818846_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1155c1f66c7115c561ff089e43781123f798b24a90f89b6b0e17c84b5532e3bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5a59ed413f3f1442d7bc974867a62db0dc0faaef6ba599fdb0b2b4a1eea5a786_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:7d3be617660f5505df187e4fcd24f05391edc606958de48c8ed300af32a4d4b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d4901ead2bc112dffdc4bdf3c1565605f3972050c918317cb960669c2ff73327_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:83c6eafb019a3bb1f25499f9ca834dacae4b9d12bd325e1c6aaf3c9b69c9e0fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:aad2ee6fdc5a78cc7bdba54a2b85eb6262c228c46c0669e8b213bc5e2de6a50d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:b05ea41dbae5f34cc95831cc7590a658c08dee38984f57a7e7581814b7db9e3c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c31facf2c529ddeb3e24149fa26470308ae2819cd3c10f4c5c79996602c5623a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3c291c7e1b4e6f8ba3cfba2a0ed441234ea3bed319ef899f48bb358c943ec4b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:555396da44ac07ba761ee2ebb6f00918bd7edcc58e6f0ae76816402b990c1e7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:837527c90f4b9b0661fd190998a7894e52d5ed26e5ccd2893f73f8a1c281dd6e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9eb46e996a0a92ce6e97a144eafb4de2d490c56d931690e2da7646bd4a735d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:136263cbe01867217ee6538a7f125f587c77af29c796ddac4565d80f6f6f033e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:234db4d1dd2ae69b25ffc649356211f99c17656c6985ff2b41deb9d17d818a6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:511621069210da6a157bdfd654dcf8c719b0fed78e04a20e2832c55acbc69dc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:da9a1cb72d24c0f372edd46ef341152f3162ccbae19fad85b4e65693bdba7fb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:42e7c1b372082364fcc1a9ef710659ae3a91c0b5279895208ae942d3d8037e2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6440ec0df0f374110a6c760b8d3d4f76bab37ff4ff788d655f6075918404f60f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9454d7f88adadf0a1db71deb86929e4a41faa6883f7b6f5572a250bc9d587278_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d0eb5db30aa4cdb849603599dd784ee8314069269c5f57d74022d8edb4f85c86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:56f2494f54392f39e04dcb924b18c540ff7481be4ca14905bf0c461fdb7ebdb6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b71416c07ecfb5dc41af49edf3d221d9d9a7812f2544b932fe6b846c33a381e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ba0986a64dce64852e19947abc82677efe312388450ecd29e764c17d2b09fb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:dccbe44ab1594c0613845146113fa16387e3e257e25f30a9c80ce77508bf7fd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:11f9ff7633175e9571698ef5e9b1a337484fde0f74b0c865f8771137aa925445_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7e7602f576a86b722bbb309b5a95973703e996e1a78bf1b053aa10ea82168169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9369ab7c56578f13cbabc3d3a06c37e347e21d637b33c0a184a6afa3d0b749ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a4929118316647c38d48875412715c3cd4c494b79597bbabb84c97692f955513_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f84b608c0e32d0dccaa55b31ae14c1187e021680eadfb6b26641a4fd3378c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:904fe02bdfec386a5e612805e27918e156ecffcadd5b64df98bf83eee398ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b54f59b79868220a2583d07a4765f92224a5c7b24ede39a695efbb9d98431ba5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e634e95f9dc122c3ae60c2255bf748cf34fe7c79bacf7346a1bf3738ce3f6c6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1d411c4137df9de0ca61c3246700ddfb6337c53b0db1ce3d27e2d0ea1fa793aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5886de8c350a5ede9763658e53c2a1ea8eff0192f47fb6f189da67124f9d4ade_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9c6c8271374e37344e716b4168759aaa50a1cdec4ab19a34440596d449adfc30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf72e2527473e8534515f0f2b8821be518285c1d530d8b9f5b478f7cee221190_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3c031bc4930b9f64b4c2009fde0e4f583ef146c7d6350b14e5baf6b02d1eeaee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5a0031e0295029ee1c9b8e772222e3ac89a5b08a2047e304d5ba7590a4aaebb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:65565303c0a3920cc8aeacbe6c79fcdb02ae73997066d58b00e45f55e27c59fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a2fbe36d3e718db18707ff5e5193e90ba9eca2790f75dc99060b3658126f70f6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0c0aeb2e460e9308a76afd1dcd43995448c4483f001b99ab5feff222fa1e5c23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5c69c9a2273946cd272324cdfe525fcafe94637e10385c56eb6500f21e809bf1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:84ab3a9b23ed4a85ea9c17b0576560c6380f531a2ae97b4ffae1ef5b61b4a560_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d04b85cf3e18dba37077a8ff4fb218b192375f15e514a8912985caf69eb939_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:785340c0173176e7544ff0f1432b123613a7ea5fa76715562266f2bbcefbf859_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:82140d306914ae4b55a652c2e347e2b49cd1856d1c7fdfed907f8f2b1f64c5bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c98e5b242de9b64ad45cb985b1ee37c94079f755515df351f17bdef61ce220ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fd659d3814d6ad66f75ed3af16c07526fceb77ddba55df97eb2ade4883cac91b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4e2c392c2d30f3411e019906e24fcd9dd72d6b43632a045c508bc07f9e4f2217_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b2c3f79220fdbd60934a31dcb83d4f1e228de6b1606adeabd9f87d85fa1bc6f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:60c73ccb7f665aad534ca7438595fca2e91117f6a14f1706c3e4a051287bef6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb017d767e706c87bd0a9948b2012da30589a39544da89ec3e8d5572ef58e959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5e37b521a92f9c32cb073194be06b845d3c5675d8ffcb1eff0175955034bc289_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e91168257df1738c777894392b1b50763e8fea1d3a6434175a164efe019ee1e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34cb3607382cf6f00d3c66b215babf81f54a33b2666a383f0e6627cdcab71233_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3ee02e856938db519eebf3c79944fda0edf33582f9cf219ee6159c7ee338098c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7ceeb505d6c83669d82eb0369575f6f85996b6f725dc43d6c541bef992f1676f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cbdc613e68871744273d856690c8414608b142786dc60f2aa58f99fb217f2c82_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40372acb903e00e05c88524f64d55bc956d6affc5486f72579bfaae9a10553af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:863ddcc5d36c528960196df45b0af45698afb52bcb02efd624fe8aa20e075327_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:901a659541f4b8009d35c57710f3a85ebc058bdadbd73bdcc01c4d714e4f5d55_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bed27645230168f534f4469cf29ae356745f567a2536cb9f754403f904252417_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:66999f9c676afce4d74029aa7af5efa9f02934ce90be32ad567fc6b07c5d15d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7235f47238489c66940e5db7402fbcdb8ca3e3c75718b483a321305ff2f38c36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72a86770f19cfbe9d187e03111d246fdb7973a478ba5c3141a6796d8296f41aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:770e70a02fa2dd4ba0c48d3551c72f1fa269d548b573471964b6d21145536fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:668d2f57d4090ab11579aa8ee95a31306e70dd98e2ee296fb981ce2f42f99ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934aa20286e26d394ab9b0fb43a2740de3247ba6f869d52c276ac539709484ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:9eeda1cd0142614ee57c3ded93d0484f1c27b9b772c19e09221eb97e9a71a268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c07ded7ba546f8417fc766c52290bd17f20913c3b5ad68533fbe1f13d160d82d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:13afdebdcb91a6392f80643946091cf549705197c837688b4691572b9ddd5025_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1bbe7b85b54ea56e30ff5af5fd01c5bbc6541a3f9458995657736f98a09d3aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:95438531744d4826026a0caf884d8502f80bad0a883e5977f9792e78f5441700_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a4729f92fed02644aad5c3e697e2a4651b01990008904c1f805b16c236edc079_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:07e9af4c0d6b21f818f11f6a47870b6f0f5bcbaa19920432d56c265c1dd07665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:913bbf67cb417cbb75d2c307a14406418d0ec716a7743262f0de169d8d330c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b5cb556171fde79154e92d6e14ebdfe74e36be218492d9e9af1c4da4181d574f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ee64bf07423bd6372ea5a1e942613026901e85d0d0fa70ea4bd1e8e2d97c3735_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0fd768d8a239e17976da6d89fc937f592db9403967a959d557058a82fa0e7a7f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:281831e7d2154cf09fd32a62ea780a8314cf96c41d2b19c33ad74f0bda18fb99_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:37559c4637b4ca0b57a4b482c309eecee9765cc903a9d6e33fa5329867cce77c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:428437dfba9afd9183b79a90c44dd891953e867e72eb1542e586f7b1e80b338a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:38f520df517ee161c696fb55869039e4c21b389a65f706e2294dde2c8b17d2c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:4aac5a5c85cabc0d7157f8cffcf602cc9810084f63c79f036f368757d50fe145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a273dc125d25b1a85fcd6c5148c7477e3f2419f29f3356e2efed7ccfcda4c099_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d409d2e51ff4ee4b3fe8204ea6b8d06351db0913a63aeed08a691012b4d28e9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:46108bca2f94bf90988c71b1842b165670293f25a87276afec0d5b4f26ffc174_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:63e4658e9b5b9b43ae2b2523518707ebb9e7a98edc519e1768333e015e96fdbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:90374692244e821fde1621d34cefbca3038a8dcd701af22d176dcf1c076b2c34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e3fe3f82353df333a702285cea442c909a9fa6ae79715b7fd9a221c78148c9bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4721dbc57a2f80297a8947d3023c99cd667264026b9a0b399ae24e47c9052f9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e06ed896f8ebf4df64b79c1f963f9b7f39b74582bcd91d2ee0b53ede7548486e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fa8eaf18d2ca53e92c316c49316d8d84dd9dab48f8e11975a26d90213699b671_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:fed9dec95f0ee08ae4f4e33f512a21824342d4add7f7ce96c51609163f7079cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3f02001a62018b327ca9be34b689c665095de064cb3d8bdd6eebadc74ab5cc10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e0abd06bcc16549e8af802d1589c94fda6060001f2b0f667e3b686d227a96eeb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ebf90a5abb2ef24ff027b55fcdba91719074a2d33ead2b1b003a1d13b1fbdac7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ec2e4c54663b1eba91b891db2b3bb7c1037e9d2d3697650768d39f80447676d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2ec937f3d525f91ab6fed3413de646d4aabf073c97999059c98d1c2957e7f576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:8aedb4274cef4b16d2d5735e8b5cbfee08336d5cad74eb6ade2d5618ae7809e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e31f8283c8149392c71b4f7bd9c6d3822c1215ef11e6af762991b31d444cf2e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ee0b887ca318f0a9b0cf275a082ee5215468b0f8249de745e14641b982f7215c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6c2c87e89eca27299fcf18b40427a8ac137150e78f702f5c1a12f4704f08b4b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9abef334961c99bf258cf89d1e0a64d05a79cbb7edc42e2d3c4b83723539c716_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c694558ae56fa34fc2679442c86dcae2898bae978d2df70041409fc3f5816866_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:93a287e0b9cb84f3dac1baa66fbed22018246a9ac38ca30ab6154391be8cc97a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:975baad5ba62851d1464c6e77e6470b669e2f29d64cc51dbb8c724615b5e2ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:eba41ba07ec0823898eb7375f88f4d94fdb499c68b940af2643ca7f3ed9be540_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0a3d8d3f32c87b8fd485ffba9cddff044ef1d8242b4d28ff19b0d2b739acaa2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:3a59a2b7c16607e576a081a7ccfaba4b9d155101d1e154956c75d73a50553d7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:7e17e4c0f8ce1d53dc7b317ba50a63a01884a5674d6b9244a796a498afe1886f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:5f532d995d8945345f71378d59245244676b31d669f359d584bd8129781fb762_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6256432b4b96835cb10bf280ac7b9cb6db299134f4496463de3f9448c2351ef9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f0c494e5d2e974197b99fbea984e6f0bf4e5ceec6f88e787ab8f70368417fffa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:20aa0c0850f60804c9f55a81ec83b673c7ca7acd344e158cc17e8fbf39732149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:bed049a8465ea043a60a160c6afbea5ff3a97d7e9db4cf59b2a0d93a7e5f0b1f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d1f3a04786a7275df5b4a98dec11d450be8f5b749a92dba72782bfba8cf42003_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e60e4e0baacd87f6690e4960806f8019622ab3364fc04f80794b4929bcc9d249_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1c8ec3efd54872f5a247a06f9c43d4edfaa81211b16e47140052c36a9e5b94cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:302914ffab2ec8088159f3b648d7997e9bcdd86475c6d21514bb282184031d4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3ff68efb3f4a591d2fe2a46913e5297c3ac53fb5a46ddb9eb40d32aeda8ad83d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f5a24be179012ee97049330195b0a9fb76bc26a372d54332d93b2d0e753d6b48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:12d8fd938c0d4198c86755820ad66073df0cedff940cb928cb671a2786bdcad2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4442ca18c4964f2de1b14ac240471e4f9fd51f8cc84156e99c2a08f8381626ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:65f865df1bf437b1643724422d12c48d5dde9a1f92e30266758da60296d473f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:edf10e1aecb727601e5c73ca7c824eb872e6be3805ac5a774f2a8a8d97679e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:03e3278bbd22ae62fe6fc239107e24e572dd3dca7f8c46b5b337f680ce04a67d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4cfa6fdaf8c766e6860b40ab97913c78673f90a3de935994ab4f0d32d1f1fec1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7a25dfc1dba9da7126868fcf6ba13b149d8d80fda7a9fdbb35b3f9aa35874148_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9a955ca0fc950213de0e3dd4339ebffb87545d6453225ac89c593f86d0980a45_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:4bb120cb81f9e4e6674ec760520afa508191291d438112c87c3c43337104a499_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bb698c878af070ac82688e2e4b95e55f090b0720d7afd261e351ba4214fb0148_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:71ed3a33443039a6b155b25a34d15fba92694aec15af26329f40cc9152c9b9ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2913ecb432b0bf425b12e60166f2f0bb7a35efc1cc1ffaf0e9ae699b5385e4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d35c995e0b81ae1d348add61f2e080237f51a6cc5aae6babb961c93786ee2894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:d955944ee69ef91b2f750eb9361ede2b0d1b5256e47b0da2116d2059ccef2b51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:35b27bbb365647e6afaeacf604f7a3361946bfd854b42d68955af96efefff9e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bbf5299aa4a36276f08f9db13f0c7ccc5236264284e7be05614fbb500aad8d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dde08b765a76dc304f330315726b954a89e84fa60481d0a94319807341307cb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:18a4bf8c13a9bb8a5680dd7f802f73f27503a93a847e41a474989c1b40cdb0d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e6e784c899d8df7bf0c67b6383347dbc3f1402f5cdb1677cafdd83097054016a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:3b18fd371e8363a000e1b41524ec5842d94c771df411f6cd3a7ac6f48ee63948_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:552f8756ce88854f501fdff456d5d28669693bd3df1813fc52b9d20838feac1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:438fe1956933cbed0933d54307ac629e509a9b275553296a28dce04dd788d096_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:89ba3d389be87446c35a1a85c114c4966a346006be3bd6469ec81bf796daf65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b9cf3895073874e5691136f883c38064c477176749d5800ac086c891a8b607b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f9f8d1159bc09aaf4d98eed3a0d110c0d73fbe6682ad8fd2efb7c2453f0d9019_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:26a957a7da2333a9379720eda6fbf1c3994542e4045b227429d7979250511396_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:2c12d78bf97817e4284f9a1c862e994b8efaca9c2ac9c93ae4a15025bd6c78dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:92840586570795503d79131b19478de48ab7ddf771d92d44841d58d3c9e994ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:9a6974b9de62b480dcab032ab9a09dc175ef0a66cb1b476c286180179ceeb53b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:20a8f2453cc57f73c48adafda28125f7f1839061ca0c4f9efde6b4dc17a54683_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:87f277e09c9ab65c2f04de196c932db918b096361c5d90bfdc6ec8e9fda7c951_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:b6642be2dc23bcc6c5fbb626ac6c98b537fd3ecff77f858bb2b7ccf5e49a28b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd5e1f65b82edf8ca11673ca8b2f48a15553a2b6b6b79eed77bf84dd4115bc15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:1b3906ea7589dae6008b4d78f29f25278aa3b2a9114e7437fe6c13f0a45ee97d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3e89dab91fa94498dcb6e4491cd533f773e72e954e23f576406fdd63db7fa544_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7e44a9a2fcfca742b9b2ddb7ae296f5739ce606251b57664d8de1002fcd0b8fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ef00bb0edda7b19e26b9b82a197efba977b7c27071cf2370b5a7af687d5dada2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2f317169725d9b6f2af0635c9974e1aec7d07fc956540400efb414622a325733_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b3be06e40a9c532750b213b23e1be6f6ca8b257fb1ccad590a545227cd12c9d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:92190bfba17fbbf407359da2dab6dcfff5d5ec1609715375448c1c57a3bc3ffd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad9fdbbc4c88d5becd9343598582864deb1c650e1c95fb2459db1994c8d8429b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3179294e04d453c1dd6ae29592d7a3231dd7f9ab207cffb2699fd6f9e727a056_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a6c31c03281fdb610b15f8f128e6474452662c689f09676ff13950bdf6265638_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:582f239969af1dbd35155dfddfa149c06b3c1ba2a31581325e98b830d7ea09cb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7354c65f0adee6fbc5908696447a07a688b0db6aa1cf98b01da8481e69423057_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0be055a84aa1cd52eaa6a87cf8bfdf6f214745c2476dd5f0d975827445414596_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:188cb79e298827a89e7163047c92818a76b8dd942c78b75a63e43de2b88dbd54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:236e732f1f785af56dd7feefd6bafd5e0fd81e1d21a1a9f8dfa83f49da3962a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e3e130393390bdc4f2271f0f33274460a16249859f37f3d39e14a1b446685724_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:360ff8a12b5272b3c1a5c9327d7e492acc577f75d14810cbdcb1b72181309a9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:488d956172fecc4a2520986ca4145155489670f4309ff2341c7cb436c6492612_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:61bc7bb5e0a38b823510482f8241b57db5aadda9cd991b23fb47ea50448b1254_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d15a84ec206e3322de6b5d62afa3a77b2577745351a7cfa9a249fc4a27dcb8b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:67d90e7c23f1278c5753a2e7cd668a52b7b2e14038868e7f17d78f90c1079cec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e664b3d1ae36332ad227dddcdf5f3eb5c89e7548c17c3b35ccb914bcef733c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ee122e214efd72f165fbc6fd39a30f7a7d576a8e4f263fc0afecf99c0d3660f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fd3a35b6cb67c0efb61d0cddbf6965e0de7f7f8d069652b048b858eac8aef4b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:787306b3da921a265035ac0779d6e8df045c847ed20c731f386868b4977651c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a451d0db186edbd7b680e34daa60548d1cf652c1591375310b0cbfcd1ea7c4aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c0d3f2f14f78a60fd88e3ec59a73b261190b8f02a13b02827c65be2357a5523c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f6858428001fc381d6e704c4c682cbf7b6377ffe7ceb1b39830ca59028f215c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:17f0063ea331250a5f2fbc110a66ba45a09e3986a6b8636b181a3b3f81427245_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7896bd63b764edff2638d50d2c2c55906fb018f726ba21b458e0ce002841ff48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:93de3ce2e12150498f723d6ec7cc3c3fb3670f9304b7bff55cfcd7ab29a46ba4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bb12b1db7f3281f54d596c685a80dc3bcfa8a45808b64855aefe2ff88a8b7ec6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:33aae5d4748b1a503921b93a0ce04228c0c49a37f82aa6219e5d79d3b8b71768_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5f11c86b89c61bed24ac3bfb5c15747b730cdafa03deb1367c13e41ee9de2460_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:8b7a59b6e37815c8c341849ae37f24f0333e0938bc842862bdabc412d8dedae0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e126c7fd4ea439b005b29eea8ca8529775823f66a899a8e96aa69fbbb23cb91f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:131bc028d3260bb0ba47796715decdf669ae8a5dbc14fd5301ede847602f6a35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:81c5257f6a8402f0e8abc142a86f094142691daf0d97a864f5a84a09e10e355d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8bf198d6ca055f6a4f72c358926f1c4237ad07dec301c2072b34aaa07fcddf2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:ad334cf5c209df2b71d1c5281057c9254a09da850c0f255d2ee62ec0e465a667_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:578b6c2a03ddcf6385c83d7a1c0a235ff2295a139d3b62dd0a099f7092b7a4ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:effb52d0aeb7fedaf7efc70b3929933eb780e193f9da2542b38d4b8f7c9ab2ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:61a25d08b42c8eaf439906394dedaafe7e5e7a5673a580984c683c2523e41ce9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:e65ca3447be7d16b39d36332c5235ec2e96fdf70cd501ccd24e6d02c305a2a6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6d2e501dbd0141688bd1f2d72f1d9985610664646bb022537087905ddbb2d5fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d801ef16b7319df58dcab1fda0cec47294f702c7df2a95ac37c3f1fdf5c41932_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f21cc67058684117ec94e8d9eccb10df70778042ae4f6493ba2eb47d2e7a5ccc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c5f9a1914c5cfe2cd661d63af599485f100764dc38f3152bb90a30f1f213e9f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11678bd964ab1b469790591c3ce391a2c85f6537cefe5fd579b0b8e70158bf0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5bab2a824573f52fb2b8dd4680819ed1808f58e450b38f4680319b2aa035cf61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:79e75a7b80f0574a0df5163c7bb35a501e038654eefbe3e335d18cb8e1e13349_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:001caedda8572e8ac123a00bbff487163b0e7a842b90ca90d5abd222343e3bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6fe96f50051e98a77e08f7c0a3945098d8bc35d1a0fbf3c08285d2e30da99d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7ca17eb7327b0ed987c259c8f1b504eeb646fac6e801f528124215c931065fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d5e15fe5e584e32012c3f48a74f26114661db802e6417b02c8d9af1b20c50cef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4f39de5d3d6061f467c05f9301aee541bdf8b6d1d8821ed83c8ccdc195826f2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:7082700d64514fd552d26ad9e7e759600c4b7839e3fda06bb26ca9ee1205c194_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd9ee8ece8dcd7a1d9c6621fbf324646647e4de8f23a7e08e3a382b21eab7623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cdfe7f419be85f69ff0f2eb7657a3433b67e96b7072525f4f1f3e1238a2ac0cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3524b529cd2206269390ebea6ffbd38dd5e5e18fde3a51da51babca8919c5de7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7b30a3220e7efa579aacdf06e78ad95a0ee4d8052b2fdd9b67c9aa75eec8c3d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f09f29e272f624f58033c44202c4cd1ca7c274c110e22427ede3cbadad948dc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:fb244e013d91b417ec6068068c02468558d4e8086c193670fb1466cf4d19c67e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0b7aebac772d22b1277b7c0a9295f76a2799e9ba2a2c0e7c454dd599bd7de63f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:385129eee65a51ecb801412ba78e068765da27255a4dfa0f4b67f92e39f77155_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a83ddf7721987a16afb1ca4b60a24eb1f9ee6645aa080657608cd1a3613b1b74_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f4b306c94330f1560edb226c3379914673589e2c93a43a224af7889aeb31ace7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e22f5705c106456d834d58f7e7c2d1bc9ad81438e7592882d5f1a0a6ae7db6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d1aa27afd2caa12e0214027e3b597ca9832dc51e48e6682189e1e7b477fb0064_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:d7cf1f09f99fedafe62d0eb538637058c8fbafbb8fb262d7f7a60af034bede9b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fc6dff7e3601a2474e8f621fcab9eab710bac9364a211b58b67c1737a4396d05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4832a0aadf38f9c9c9318730bfbdc5faeb4aa270c4cda23ce256b48c35ac1769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5167f732098db1ef863656cd301e75fe83e858f6d2c1bb7705967ad8400b0200_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d00ef7be7aefc7342c2904a4c4d80c048339cf3daffa08eb520bfd730f738a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:caa6de7e21dec8ca20dcf066a4c225ec7bbf7af81bbb0981773edf10ee7d1a19_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:068fae1babe83b14280ce7a4c7c07e7967b26b9b8eef267ea9e4b3169d23d63e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:36358ef885186189dfc02d728d9fcc4aae07c77c949496fdf67260e946bfce52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4f00ef2a90fba1f68ff7898d3fa3f259e18880710b518fa94c3a571797419a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:dfd46a09bef13bdc9a933bf43b88ebce62c5ba37ad3818d0234253e6235df2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4cb4a70471d10962e7906f55723c1ed73779f967caae9af5beefddcfc1bf62ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7ffe17441da02b33808dec15ef4a09664bb27364502aa6ae29a558d6f6e1bbdd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9217f882f47453fa3064cbcceb9abe8d6b26c69cf290aaa089a76e79431562c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f2032ff4ad9a104f4b2b7452d703530710523c1c90610aa144919713486646c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:14b51fa44db973723f651aaed718a1f0771d77683e675e329d9fb4a67382628f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:581944a4c36b858d98c57746f899270e493dfb7086a06c5991d08b4d38d296a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:6814fa8f023a1a1405308531926b7254699550780b2577ace036b7fbb1d69245_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:feec0f428aec5872eba597db048d079eb78cf58c4ed7d7e1bfd1361bbc8490d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2fb6f2af9ff7aedba4865909a33feb62906908bc45dd4cd4bc876fef9438c645_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:ae89f198a4bf6c0b1952e9b2b9f7142b597dbea0b2c640855d6caa422357f9b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5ed97da765b238c9c299ca3e53e8d5af7ad4050f4586ceea748847b186b4c9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f40a7efc36af5e7768f153e406cf699fa48d11f128b992bf93c2568af0a1befc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:01020dcf8cb27d3d8eac3a8444577c8022f84a9698f695cf024bdd28e50258cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:15eb1bd0643c92e4be95794d9dc0303537f5d5d4e098e2794fc5aa654d1f40cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7eaa0deb7364695986ac6427fbc49b04772136aca0a7f31918d961b2167e9aeb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:974eb63df38c758909ef1e1af41f8243d073c423260b6cf5d9a2e2d7ad467ff5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d667e2c8b9ee8f0336f88c841b13511529dc1825951215deb9c603378180cba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9e4a00e55f1739230b38876720e49871db04c88626a0adc0116376295850f771_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9fec2e22eb9b076886d56e11a1af28bf7be6c13c029fdddf558e891a3f80afe2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a93a552beb0ba72e159d6bb472f42919134f9f8e1a957ed3aea1f63f05fd99b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:aa75a7c3038b14101284aa3470a6accfdcba8354d908c39be5e60cb41439c3eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bce85e8b9a02fcee17a59d0239c8550249f920f31c04767e72b0b1cb93a2e554_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:cb64084f1412f5467a99c8abb5e6e5fede22960d7d0453438bb50f5212c11e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eac4a65f1925151e1bd7dcb02416290931a478a312bb6fd5b0d5c6f7dc089c01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80c62198a658fbf5bd0e7a082e7c5043e1be8bb81b98fbd9b255880ac94dcab6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9a9b74d94d751889cc8a19849d259891e9dac54d23e788ca91f087d2b0d35f5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b8798faf299f8e3151c45714980d4a3a3bb84cbe84e04be0a4799f896bcdc51f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ed89cdee42aaecd3b948f30ed5aaba7ef38d261b454db46692a58c85ca049865_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:f8e48495a229cabf438758f3c6bd9a26d5b4d1d484906d6cc48e7ee1c8376357_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:c28104e90046a41fc3c71dcbe6a2008d3ea651e28e7354159d8d0520fcd08ebf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1eeae85b0f0ebade54c0167bcabca1a623f333dc446bdb27fc5278a9d8f510a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e2bf3e77bd989e01ca8fca6c9d911396ff9b65e6f7798eb38dba0ea1b5cc8c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e75382b12c9dbce6bce68ebd98c9853d0e48866bf2d60c5854157674feaa017_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7826221eb9a5a92aed0ecc207d88709e9fa7f61cd06d900af5011742c5ba860e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:609d53dc931fe72531c947b6a92400626aa3a6a166a10d04a7c17674e1a6804e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9296b9290a8b550c1303ac1d0a99daec0876982959550c9b94218fa426dfaeef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d599c8240c91237e20a1b99252757854b30738db459d4730ec9b3e651a5384bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d917b3022de15bd698060c7ae64720d1194af348d73f13e80915bbdf87274de2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:468fd117d14a26a77bdab548caabbae4e9efc231809917a4bc47c8d65aee7c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:511a1ffa9ab5d9ec2c2a891b61f39c07ce3783a38bcd265721c971ce72131ea5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:78970b62b3ff0c60d0e8ab8d199e1c3faf26091d7bc144ebb53e58d4c1b0eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753185fc2b858f46acf08c57915bb8506649d8af7636d16da72df9fab4b361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1266c862c3f7548dcb7bb571354203ece7be8bb682aac68205309f21bfc5ff4c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5fae42b9ac87b13cf434cdf9c015cc7fcc23ae5cee117a1a26013ab4f59c8d2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6ab0ba743484273703fa4c381e79637f12147bd34e689d38d89ac91a3cb30e42_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdd00881b1819c0c4e07d35a779137e2d1739bcf3589a212d269c85aa7aaf7ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:04e1785aff8c2a7bc76d879f8a7b10d58e45440d67ea810fcd617e7620098423_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d29a2f71d49ab0417165414af10731680653c0b0cc0840197ba0fb379300b34_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:498ecca4da8e3da06c4a89b377a9061ef6b4253636eb9875d144da708df83bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9bf569a7dca22fce3d0ee5835280124f05c39fd634c0ee9daaabb987b5792e84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:387fa2f4d6633c234af34d2332d394e2e51ab40cc17c44100121770e10b2153c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5f013f842a9419c28c9da80774031508cba00df85f55efe29df54ee55e40a495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66c6c71acef118c48390852f333cbbb7180a7581337f82b7b3b84001fcfca4ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:f82a7146cc33efd8ed51a74a60501890db13f0cb0a14ac231fa5ca4cde153398_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:24352ae25f9138d812e31c8a76afc10380e24047f742368309b0bd0a910bd1a4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:248e82d261ac1bb31a749f874354061c76518bfb5fcbf1b27f47e24fe28d7088_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c61832396cc1cb359058e9a129472e36e4f0512ef11e9a81a2cc60e7bab85e3d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f35914fa9d49ba49021b52e4939678a80e59f339ece4b4a88445fbbd635b9506_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2733240d3524ad5239820c8ceba7375493299b6484b40671dec9e2e74c0164ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:66e66660307c7d6d2897d7b187e10f52e6431df8aee01b7970879a4900ccdd98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9dd548f43928d04a8f08992b4ae49110bdc980a6536eee360d3b67574af63053_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ff7bb7025856710ec3a3c749149b4ab8e034679d9e7e4f4a8e83b22595bbdf15_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54e3406315af4926e624e633e8897eb5bfd7c5cee462b981defe3b9931f60b5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:91aeea928c651ddf82f819808dac7a1a376a3fbfeca80d80ae8129998ea3d8a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ccd0f32421f143534da00651b71e0bf913dd1d46ba4290e20d4aa05a88330b7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e78b14189e8826612956926fe299f5a30a8f7b5c831624d712746e761ca97821_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:44150918b69b3829cfc456053fbf617770cf9c7f2389cf73d5cf64b3cfb5c439_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:817865f4c02dcbde2649a3b1690ac52ed9e199dc1947d71f9c0aea42e3c200a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ab0a4389be39c7759c601f187c3e84c5d25d662142361f307da37353bc6fa331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:eb2245896be050e1a473aec78764ecbb8e5294a5322b9efda122c6724caf22ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1eff2c4b51e8863b1658e72c93cf3ae3798b23ffcd761bc5850b73f316c5696e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:91c44accec0ef31e6d6d78e61e58a00995a79686a4ab17f3cf1ca5baf146b7ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:925771139b8fbf1a20486157c856be9dd483364d61fda6211b093187727328b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d770dd851d62d937d0a64102dbda011abf9993830a451d7e2c9ae1a3de5d5641_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:77c3bb39f2c469a95476a77d03827eb7fff82e135d676a98f7cd234916e7c76a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:82fc2e0c074d30e05a351e9a01a24d98de301393bf0edb15409b2a6e565fdf47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:a70b2c528291fa12115a3a547880c6054b75bceea6044b7e4e7647fa6e7c1f50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c03c80d6b9e0634610c7fa313a437e68b498f217a3f5f463d4082ad64b214499_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:21a73d5bfb768e50cd75bf8301c30cf255732b7d7612f3b0005a61b003fedca2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7df2ea276a70ce34b9a9c5f82b250ed3ec378fe0ac697987da144df0698f6ae4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ebbf486a286394aaa056d160fcf04dc5d3eeb8cfda008aeaf06b225e0fb0db44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f411d1fba57ba8789f72510a84d745e70de4e738335b9ba27fa5aa418bf594f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:98c7ec2e84b4d6e722dc042eab2f6b2df62b22ea8ea384531683d4eeee9d3110_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c4ef281b4fbd587e5afc369e33f0ff3fed25b248b2539cc595430117df0d6184_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cb3be37534292be602cf1bc6b2ef2dd3195e2f1127f1833df9cbfc9b82611c26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ef2dfc448bbf9f36ff53b145a5a63426aee82d95277592cd3fc074e66913e42c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3278aa95a935f291c7c67b781e13186c144b4be64f095fbec869c5cf6947523a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:64aef2886359c9b97b427b248269b29abbbda888d1ac70aefa3f24d8c5cd1f5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9e91d796788b13cf7bd2b02ff5a23443835f6b3c86e26393ef8ba5d6258411aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d339be11655bfe5f2ca51b7a312fda1a28ff9a68315ceed9da252155f07b3122_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:535e530955f2f9ed98fa5b7e1deaaf1b56bc3db56b3ffbd408b3cf9e39943595_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:783f00e3265dd66fc1513f3813ec7af70e194942240bfec52bafeb80b21edda2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a11189fa2e1bcbdaf00c17297eedff3ad320d61c71cad1954111fc1c6b0ba199_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd92c592020d3283f6f21ab44c6d1f6a5f9f125e98a964bf2ad973e34f6dfc6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:10a5ad805f68483cf5823c6e2b68d7863a33ae40b565289edf03b7f9a3641bab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:56cf2114adafdc7b017d82bfec1e69af58719f365989edee7e7baa6f787528cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:613b40b56a983e7a08ef4574c0b98c676ca94f1a0589cbe316e673ecaeda0239_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84b5f04c9b72e2b5150212f2bee40e69aee09ddb51795aff6d40f3fdee28fe32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:2156962a9a1d312cf87f975c6dd1db2358a03a2bc5e8d380a04c5af456c2b37b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4ec5b71983447bb8622e5bd7c312bc9e4717ed7cb39e54101292ee98f440f99f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6860f0b8c44c70c801e45e620f0b7ac23606034c07d0006f6bc99eee436d30ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9cc03b51f6be00e9a5439141555ac6300985e9ecc0d4fba95c8fe552e2aca829_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a8fe37d22becbdf7c6b2332e9e0cc32a158944d96f973603636a007de2fae73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:56c5bef0054ab0d625f8dddfedaa6a3849a068d359ae7a265e5f5a7e24b5f331_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d1b1aac074a03d9925b01d86a922eac25cb61e5de17f610076e891a003a6879e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d5f13682e7ad175cde12d156b0dba781cb4a68a01729d61b220d49fe5e747602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:50695d2e985fe78260dd9db9299eac58e16a509d553344728cc042e87c8c83b3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6e1e54fb79a9ecf524a4992be95e0890848cd7cfdd281320b70eed88b754a391_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:d6ac6c35dabcd91e87067c978d102c609289225b61da0c23a745bcdd08997507_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:f48e264d1c7d5e76ebcace36a30f5c93cec6479f785fffe2e9604de292a7b1fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5fa9b72a03b1cad6299da92fd23a6869a1d45a9b2769a599011c808006a5b45d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:e9f520a67079d298374d0fb83f6856ba8e526b5a11725d21ef381dd162f419dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3db2dd5be497dc1a081daeeed961fe7f8c4a9dd501c62537b542d387e60fb414_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:79f60858d7ae6e64a507ac3758290a64672e3009cbf0556f6501e8b87977f48a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:047531e75ef4b70439b0c100645c8dc294b7c0d5b333c0b7ac50a7be13a9b5d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bd02a65b54eac276f36f0ce40f3416fadde60dc52a0ac2ca861cb3880a32054c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dcf0b8e18baffc6f2ca068e2b584362a98be1e69812cfde6ca3ad77d929e4350_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f0df816d741b54871d0290a7d0f17f9ff9ee011b86e3641d019d2759fa224927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:09c3e0eea916541ad8a24a8e22993f1ea41d99d896f1aa5a2678ba28fcac8a9f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:5106432126a3a3891cee21b2ed7bd9fd36ec995b9d2f781f74a126ea958dd30f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8f55244a0bf41389ce1cb105d748f239c4c63135ad5ad654b7d2bb5efe58314e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:d12ab1ce96d2be4cebfcdeae7b3d7c797415c7cd44de69af75f6686d92d68268_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:108793560252d26817a6e71033617cab53d5d781a20e8673482b258fdaf039c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:afc324893738649a3225304ff6667f1f8878e1b73d59c8d3b64d78667b2d9170_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc681ee4741dca95061fe6a5bc2846147e1291bc48bce58f390d1a1de7c86a48_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f13cee4429592adfda7a9388c4fa451231717bedfc28a5a8cf6ded7e08b59b94_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:03d23a7158ca048558e022afda3e00dbc7efb6ba846b92b8ef24c263f9778325_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:147255e80e270467566f0d90c59c69a9ae471111fd32e3b7a8f97ef3e3b809ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:469c45e0f642346b0fcd71e50e96f7a7c89ca72b8d60f4dbdcee9dfcdaf833ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d29a64d0d5881ff0076ae9011ed1da461ea760e7a44cd2fa4a2f3211dc9551eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4da1416207ff0dd3d1a7c4d9f79794eb04aca6c2c4a3fa77f6656ce47f083468_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:56e14263f353b6797d5391cff539cf1b576bf670d66cb6ab2e94ecebf38fbf58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:63c18bec5072063c8544cdcf9e3e0895abd7df8600b03efd200a006c6f947c7b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c492f66ba7b7e9f622ea5222196ffd26c89d158ca163f3570f6d8ff92a7cfd56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1b48c71b79553977c30d1804eee0405d986c8b612d2a286a278316e81d29192e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6b485567a878f8a3aa0c54c0140818f24b791b79c3d55b9e7c1d23d09240441d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a5b2f0fad910c9f472a7ca35e489b9a97d949e83d428e52cd9ef6caa24d8e389_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f032edbe0fd6533b779d508dd910882233d228cc13a3497f1735f81bb19ad901_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:1d4fc5d2a2192b613bd81a4b6fcfcc5577af132e5c30f2bd8650d1d7a2b30c56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:42318a2c83919d7d69ffaa32a124a334a6ee01794a81a07d8c2e92cf82bc3886_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5bdd5a9e76fe4db643038c1cf8dbc850acb14a477cdcd547ab4618211632d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:788ad1a4ca8500cbd74b8af7b221e39a8faa4d7cc3b3b83d2a1369a95b4b32e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a5d14595ff0e6925bd23cee92fd62ca4b0bcd84e6c2cd9a36807be53ae81e33d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:cd9031b729af8e30cad8e8cb3b45e912b9815746785e5ddf838bfa37e1a4d9a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e17331c712e7c45403832c970e36c9a11796eb4b56c8f81785507147b38100cf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f4dea71250c8e7508ed224c6cc5b312de446dde574c44638ff9841d18cc8dc4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:40925f481c0ff23ec710e88c1ab9672c210543d02b788d2034bdcf4f820a8b65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:44de9ba2255091690c444e6c65f2b596fecffd627404da628100789f98b1efd2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:740d36f4902f981c412fdb2ddd862c310553d321651acfde27630a3e2ca55d69_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ba935125edc289624cf1516e3cae25dde904b306dbdc95eee37ab066545057a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:2c02d8ae1f3d6b08505dc0fe8fb0557f50c469c58e1c86965ca3dbcb21429358_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:46c5029a492dc196dbc2d36aa72d6f0233f945b70f49c204ac49ecbcd2c7a13e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:94af3716f2dac4f74dc4cc0b0a398ed2318c0ecc2ed2cc9407accc0381170b7c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c81f253b8593afd156f2f4c9e3fd9d29c7fb686836e4a188d9953d11b7f0120e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:79c0a8342bef6d8b7a0ee9973044df9324263369b605c2e201a52556dae78120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80beddda495ef7037bd2fa9fe3a50e0d4e431a335b9666fc0ac571d6e4900082_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:91a1bfd20a8a59b59d16e92a9d45e393d11cc64904ae3915ece7c60490b18790_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fd63aa3f0974181bc26838682d51a2675d080513bc303bbcc6867b1e6ce5caf6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1ebc0e6ae31f163a4be6f76fe1c5dba5069b465ec5ebe4f433086f333a7cb0eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:69d74d26bce31107c94764ca5d4e3192e2970d148f1816e037aa13839698a525_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6e2518a3d8f7747bb0f92eb2b4762e9f964f88da583a7c136a77b3361f5d2c85_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a23fe592a66204589a37f192c5fd451a7a3bc3e25bb0f4c2fc7b86eb7fb83b3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:002332a425c22ee1cb25398a1ca7c25e1bbfeb8acc4b2a2ebbc8f12525042e8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:0e6225c072911af2ad8527bd675c04857e39a3e81fee4a70f6f575babf5f19d9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5f333315d7b4f6e63e6a142123c817be5d66af553ea39dde88884e8ef01f42ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2bc5685a20a97a537c635f57b9c0e610fc75e0e82cf8604cf0d5260445e29c17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6dbd0a534c377e8d3a7bfcfb5669ba73af5a2e4f7562e12f37f9956c85f11318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c2998d6cb6e237f5f503d5524825adc2be8896a355e9c193051653eb6b7a1097_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:03aba33d2af20fc4450b9a59a0a255e5446a784677616c212477e2a2fbbd997f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:09b3b4f2db4f35cdf6d99c15b16bf7a6220de8a509928cbee34c84c768c0b1fd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0c1fb3ac2084ce270ad5bfe00bbb1faa80fb85bacdafc9113b74dd734d1b9dbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7d37da65c0cc7b0dfad907e85de51e1d13582b28aa74edb6ab10f001f161c6b9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0cb607d43667de53d1e12a162eba76f8c92c62cd1b678a5c519b1afa0109e557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:277a43d43dfb3a8f80a22e8b61b7a220cc2c1274fa033523b39b18e76ef18597_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5eae1f7809cfe21a9de0b26b17c79e6996bdf174560a8ca0e558a8c074c1b5a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:92cf372fbbe458c3a93eccd22f82959618c5068cf7f7389afce849f77fad9af2_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
RHSA-2026:25183
Vulnerability from csaf_redhat - Published: 2026-06-17 05:39 - Updated: 2026-06-29 17:50A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:0d3bad3a2fdf0065c684f5230d70dcc8e409e8eac77c05ae3c96a2f0ef7691af_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8020d174ca38de3e6fd043e88d9cc99bcff3f122213fcf7f3401109840e5f836_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:b1bdce7ab2da5d78661deb28655869c3ef5b465c84deaed87f1051a9ff80de46_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:29dc083a72ca8243e2cba74319507ef722b899d7d2adbb184e0f2a613685a7cc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:33a37556677131e9053cd0acd67884aa7b0f1c4ea9755aa50890a90f5818f92c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6bd2c9cc84327f1150b503a960d4a39ee3cd89864e340b7adb6af23c515a7cea_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ee976bb4134fb80bcb17727ab547c29804427b8f9c1befcd70afe303c9c3c9df_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:4d09bf9ae1384a717881bd8e9791d30462af842df9e4df1cf39c5a9e3f0aed98_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ca042c7fcc0d046b98c239c109399f9bb786072075bffabcf391604f206d5671_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d8be6865a69585184a74d7b9d7e3c4295e9487d172f77688a084114b2330c21a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:fdc1cb7a13d9747a56df0cc706a2797f0d8b6820e30cbb9737d3466a6aa9f813_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:58c01f288f26e46a5db54b1720e908cd66874692f1481d3795761faddcade35b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:950c0af402e304851f7c911c49f85a186d37319d467ec94eb30264417a11ca53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:be1de44d356b34123bd72ac93501b1e3399bc0d7f454ab41dbf9ee1e891c5b6a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f01a16d58d5fd5a7366353330c82c4c1625bdeab98b04ac980c92dd3791cda2e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:136e9192928dee3b2a2b650e2998257b604d2017d3d86534182c60a5c26ba725_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:49a7862803a48ea4919216a718153cda0d3e2cceb1e7b3191310067486aba6ae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:6a9debd24c7c1f9fca5f0484d72737cb2c9c4f11800c3333fb5cb719e9fb68ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:e1682313c9cbd1f0760f99af61a39415395b073704d92bba97de50c136c6a9d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0001b49903cb0368b48a237271287e2b5579a7beb8c61efbae1f362699d8faf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:36282ae55143491dd562a82d206bc2e9ea8d4f5efefe3197451f1c539ad7f7f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:4a8fa6462de7c7ff3216ce4025473254651e3f8a11b973a23b67815d1b73d142_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d8fa72da4fc47e2db6b63a7a68edf8d552e5109f72560aadd414af976d23eca0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5d92f3826eeea5fb284d232c0cb31510e46f2fce54db2b2619306e82d204cb16_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:631ef47a1169586cb737bfda8aef9597baeb44a938e7ddcab8e310c26a8678df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a7c7353f650032dca77642c03e019f51d03e0e53833cae3e4a8716e6aa5e3137_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f410d487f10ece94e49ad03aa9aa54b6584828b6635c5cd66278a069ed9a3f36_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:66247c4f0f00a63379797545da76f072b9d04d905c3490c1e6b06d2a47432586_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:99045a0ec0103824cd7b15967ea1a24cbfa22895b8da40fe90cb7eb0b7c64db1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:c7c19ecdea825d8402fce7ee3f07f825a1209b1f0abb7d8b885bad4fa8e824c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:d8e7283b76c170d28eaba53e376eeb606663cd514a2efb1097e435a2c6618bda_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8e7193f7c19de6f69e9e8bf1195ff7127f5b457c77982dc0ea82aa9654b41295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8fb8a008770a84e5773858aaa251d2b23af127a68baf5aa102b605731eb32f9b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c88d4210daf86e56f8fe6a9e923664148e2a16a2eb3d9dbc03889c475f2ab12b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c93d7dc23599ae79223b1cbd7dc62b63f6e6c9985d26b06bc6f3a692b8568096_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:03bae849f44c05a66cc12a3e7ec69cf462de8229a81790d0bbed26bf58fb7818_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:369f2e68a42db6bb9a7a9fe09ce1cfbd8cd0259152aff798c6dc3187c6932342_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:411b9cb7c1d396effcf80e85da91e0ba5df158214c97ea6fc7b88773ef5fdda2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:52df8f81e7dbe8760ccc4f802e996c078af59d30b43f8fb846924c2d8a8524b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:771b9045bebbe6d595a7b43af45cb23fec31ba8b426bb2bf2538ef3e71cd71d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:84d96f10dabfd6d3e58cd64b2df81b4e529d64309a8a2c68ca0d7783409c9082_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:4713871ce0ddc73dbbfe1d579c3d94d9075fa52c634b51f5d972ae9731994549_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:eda0961b2797331cebf194a05ac642394b34ab65dadbffa8c3affc6bfbfe2a1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6b2bb2fa9cf85ff14f8ab121bb56e561ad5ad51d21e5f54395940e923d5067ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:80c62b74fdcc97a49b2d574bc03b30849ffcb7d616e4b2549ad0259c2b29ad9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:bbc22eb8e3c8b1a8b6e4c4c67a7de7029a663844b4a32d97ce4cb9409c6a7243_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6011021567e1b310f6fe5f0e5416eac0829cb573e35de172121a652563d28637_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6cad7b501d971d385c8ba32a6e3f0dc3dc9cdc8ef555b0f0cc520bb90dabab5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:9c623fd87f8beb75e2998a9f1aa6a1f4add460a2aeb9200206e3e7e481719612_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f16776ec75d1c98068c8e15523180e3b153e60aae643c6e971c3f106dd61dcb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:256b9cdf5cd6f7e32a11f65f7534e1ca39a3fccb64d411c7e01dd6f5e600c237_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2df60a790d449041be77c83066368408cf3a62fd2cadc06fc1e3b2e3f9b074b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a1cc536befd8a5ff3721fefef114be3a771e5bc3e862baec096f187d3eac44c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:e472908acaa3abff6ae83312687ee22a6302d1385ae4f56700aa96b50cdde34b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a1a143d95357905e27c585da7330170cb37abdd2df796d9ee40254df33124938_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:c41824e92b4311f735409b231983ed7e69400752527c7a0b9a5d86295743dfce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:e12ab95c40b730b22978b8347af251b1e45d9e0f78eac600eb512f544ee8b043_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f20e5378fed66eac4219322baa1c6a8afe929f63d9def922e0d904b398fa70e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:318a0790da610c038878f604984d2097fd343950c7a19be380c0eb93576ce149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:4f1a52ec8422a2103eceff5faf897ea1de2a945e85cc5bc6c92db45d6e11ece7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5a36a4b8ee0617b0fc7a53dc73e1312c0ebd9f15e1b76df50f977edb0280e684_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:7d0ee426415366ae01e279d9d37910f512101d0ca3954fada90f7ef41c463623_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c0a7a8aca0b9c4e91ac53aadae071314d6a767bcfb5609a4efdc669febc0ff0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:302d8765190f09765b6337353913bba111f3141b51b2cd6568ffa92ff4cd3e6c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4c87d15448cd5a9f91cf4da7bab75a8ad7ff9c41d7a50593773790a2a033fd75_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:5892097dad581a64c8e719ab40779017ef76eaf9f26dd427f5a3a958526b8878_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:35529853993d22db0e171ead911ad6be43aad6fb7412ad60cc8780dd041eeac6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5d387d45ed0b6fd342086f33f1ccf62baa32242672fe1bb2e3d9edf1cd5d5357_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:75e9dfe6ade249647f22ace08fb6261bf010a5cbd649503dfd36022b0ac21947_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cbbe1259462471e34d2d457236b91870f658ad850e48a2916eecd79727e6063a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:04bbb72da799d3d6121078bbd86fcbbf04141aae2be700dba76edbabc3898cb4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2a6242ed76e5a16c639f3e9cc29ffa98c4dd38b1eeea2e98998a91a7bfcffbdd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ad94418151b25cbf9cac34d024e453ce4a1da18a9a8a037c6cd501cc81be5141_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ce77d59453ff13bc72e6aea66117e5df0e435bc5e483dd4b8dcfb480c92780e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:05c6827b78a5be71ae14dbd308cad44b474fd45396a0a275070615123845dc83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:17c1269701067a9a8f1d7ad7d6b12a5c0ad1de0910c184406d8420ef07f2e118_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:58be962c119c805a6a97b6aaa9c841eeeb02c9ea4d820ec6e5cb1ab925948289_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9f57e81d03517f434e21aa6167cbfcc2f7a069bac497faf0222a030a9d63ff84_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:35a145bb29bfd1c31730b192dd4f5a2040c8204bd5618fa7d06d6aaaf931ad99_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d7a2eeb4b4a3fcc4a228714db8a6fe9118bbe916b3179be4042b13fab587621b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:e21440158d43b96d2defd42f27e2945e612dd4554796b9d30fc052bfe2a43389_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbaaffebd6656688829b0a807bd1740076f2d6d8d5e3657aa300713e1791dc61_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:2311e3a8e8adb67d8c72c0df1dc473d7202824938491b82285989bfb10a10ae0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:510fa5b2b426e01e06907deba9ea30bd177e596a3b18e2919f0ddff82843b4fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:58e2a31b5b39a13cc91ef51600be97d3609f252a7f6a22bb55649445b8850777_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:dcb989aca5199e9197e5004cef42bd412b63d856d3c0fb23de188b9de32a3927_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:04bc721c42c8ba150d61bb9d813105b7027ecd26c38928b471e05eb031af30ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:27535309ffe483bfdf73b76758f97b1f748b2d0ffeb0be91e67813ac492cd570_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:45f231114e1ddd0f7befba9cd252fc146db8a7a26c24947835ea5949202b9d60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:58facbe238eddd92b53099c9cc8c7419d1550d32e57759291c4cbca666c91d1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:10ae223cd4364291504b88b702a86246162f08d3a69feb32d27b8c20d4859368_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:555e55dee776735a1748818ed0f20575fc0e8cd338d18919a75016a7abe88223_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:6a3c5941880c61d07e56f271355d31653096121c8afb5f1af7fc45d1c2cb35ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:88134f2123140f16553a9bdde1fcc4acad2d048308e8102871ed73d169f878c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:1c9cc47a78fa993f8d29142220fae37259c4179d8c414d63d64c8899da991e20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3ecbd7aaa1c507fd2297c7c75b79ad6d090c4c6f618195ffa69b03936a483a73_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bde8fd80d02e817c6f166cedf305fde13f298b77bb1ef117cf6df594e9ef42ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d17a681769d66685a0b7494261b076ce4cd548bd63ea15632472ce11d250aeb9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:4e1a179fbef4040805c8459e2b95ebe19ce0700588448a517a59a9cd53b729e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8d83af3f1b49df76b061185784f8fb09cdbe2a69227396aeae29acef430151b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:937773e52fa27dc0955ca18864cdd92999f2c306844ac7370855bf0f733936bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:123945773bb359a072ced643524a5c2a7b3bdcf01f3dcd32c93e0871bdd1d069_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:197409a9cfd1994b720a409a5b533481224d936d8a497b2366a82a5ba89a825b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5386117e0836512e7d413236dd09fe0ceea6d8efb57086ac978122c9dc389f1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ca546246196b2ade2da766b82892c3646ee31b7b318227e12fff55587e7cf798_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a92d30f060e85a77974b727ad8b45d11db6bc1724cc4c8fcebbbea0c01b4ea59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ce32166f81967cc551375285d9659c4511888a843e825165e53264bda6d29735_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:dbbd928683fdd68347e0a60bcebde2977290228a85dce4dd9c6e61ad3013185b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ee873d42877999d28e8cf0c9a2dd0193c9b925d96b804edb542e26596746113e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bd9845e0cf30d148957a7d8cfd5747f0e31a3153d226a54e18cd57f07ae2be6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:63f106ab0f9ea50868debd99cdb6d07c45b9137ca033862536c84da5f920b330_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:66eaac0c0a7fd7e753e7de3c7bb4d033bf2acc0f58e1cb6e1be7c6ae294109ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:792324d24c7d7cf0f9d5c912d32eba303e35f6dab71df1266c613f511a337f6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2be624efb98b975b6fd44b71d9632ea17125dac2c5e960f4546d3ec967aa75c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:7f419f3f95329b6631d0028c1c34bf87dae05458125c99032ccd9ef6d25a9817_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d47923944af7bc86e8941e3145f8999292ae0d10c12fd47b8642b19b8140dff6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d6ea27589420a9d3833141dec58ffd355cbfb5b3f4a644f1d9165d18de898f7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4fd75386dace3f85123b9724904dc8699839fec011ba104f932a1c071511b0f2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8a824e34e179ee9d31f7f04e8316f72e72386b0a5149acb29a86eaba4bfeeac7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:bc390567b04d943ced36774d0d23564a3ac548c7e65476511f565b3268e7e5f4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:f81893728b3145fd8cf3124c8322152a39a6a6dcecc22c5635f708d70d6441e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:920f7e62a7a32df527e8f68eda40d4c65ba960c194ea31a9398dcbf5325e1daa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:96d0b82bf59d09b8c8fc3ddc533d6c3f5d139d69f058f4171910ce57a8cef9c9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de13ebfbaec81788cdbf0d24c4d83f33eecf6996bd4b81ab1a9d60d1925b64a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:df25d8f43c3c350e69df77cfc30a3bd7305ed33640cf75c902bc6042d78119b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0d321b8b7557ac625caf6ad70ca1e67a1aaf7e32bcdf9ec3f11c13e19b87cfab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0e4133151f34a78b61b784f5460e598020d1b663bac2f2e4402eeb8c7f1de0e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:c81c37336178f676b92b8a64a9c37272cead0018d125ce49a393dddccf26f0f4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:761a7b01044002c74e7aba067e837355523f1a339969070c0d9d433595616e11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:cac7f82c41b4c5d56b14a894f3d70cf6d73cea1568c7ae23b26bf4d76b1ff8be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ff31a74541ab7094f3fb99e1a1a27d232493ac192c11bd5695af3cd5ae68a315_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:17eaea4bbaa6e62c74c1c6827bbcc9d661c3874dad7b55e30da8f185d7adb9e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:29a02a53341de32baa04c8397c101cf63dcc62fe367dddef2d5018f3b29e9e2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:31007a47283330c6c3bb6e8763e787089e0b9baf35126f93b3933b1d0b5920cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bddae57668d8dcb474d2a6a95e3e9351f8eae4a3333f4c886f8c53b34c956788_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:247705d66acef25f3b926e3022ec5d34ffd1bbaada1fffc67731c3616be5102b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2af3e438f911d3aa3d82692d18411b8fc56022bb7cf4baabb47545999001585b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:7f85ff091a0d8b06eccb238a2fd760ca3bca967884d68c1f4534d469f604d1ee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c26c4d6ccaa5bd9ded34f8ee9bc1cd0582bf16ad32fe4d180e8185b3e873ecf6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f16e995e21cd183002d86bafb210c819e42233171bb18efebe8755f6346719_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:515efa006e60800c5d490d5344f5a074c8ce2def306693f3173dc525f908b989_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:64ef93e2a8693f00a5583436646d8521c681541e6272d014aad859d667883f8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e302e87bdb3a62e35e444b877890297fdfc72aab54c898702ca4f327368b94bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:04ed231913652135d55f7568625b24bdae36eecb758b626f67f924ca2e11f9c9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:23705a6102622d9363b5a39fb5c6bf31c3211936068d07903ecf116e814a0fc0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:bb901c64bf59bdd90c1f3ac0bb9db1e8dc7d52f55c6dea6912c0f7b0e1ce26d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d36cac43e30c5430ae4eb07ffd952069adb108e1f5d4b51471b3cd166a351de3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0b1448f15c83b047b688fa8f20c02198d8ee2d5493a1b16641289e464cb32f05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2cac34759fa7f1896fa88f0805e862fa9ccb7ec3168344fcb2e2db79a3bfd301_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3b39a5c369ed72849f770b035799fc99b2483cc05ca138e34f244d68a133af8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:96e7ed5d6bb1591579a91f61a1c317c48aa777f3d443279247a3171cd6b8a3be_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:17861a1a45c4c5baa4f4045b01f1c85a73b3be00db2cc097dfc42a7994916e46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:51b605ad52f3f2e716c3cbe0f1b39657713ef1f908ec3fa96f6ef9bcd06929fd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb8e6e6e5037265b1c27e2f3ae8cc2ba61cfe7e0ba4a3f658649b14eb3442226_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:5d8778a616e9a1f3bc076fb44ced78a06000af9c6c738355cd42065121e234ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:d35059c83a8d8eb8338e3443521228908e53a38b6d50b1d8f5680417e6c5a74c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:de20468c4b2b46a39243fbfb86c3c4d2bb9beedfb2293c669e90ff7dabb46a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:a9bce8dfa4a4cccec18a71c4e1ec59162728841e5e5ba364b84f3b06a0c53ee5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:b020a11975467bf1482857040560c3e2bf14e3506bdc512d134b73c6b968bf09_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:fc734a1d7408a04489958f6e4f8345fa5efe0a38a3a9807c21645446e2818667_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:199e7cdad3067cd48ec455730a76b9e2c3b3e17a247189f09492a81ea6fce29a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:7e63391eeea9b22ff5767fad7523138aa7654a487e88dc52cd85de9ad180a404_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:d4c540639f3f249336e783f05eceb9dc474c482bb5ec61a5e5600642eeb3313d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9b53af12f6a034797d30b2a2610bb1f2963565ede8b0eddd61c9c77a39298995_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:dfbb4e179c3cc1cdd5cb261debb181ee89e30aadf4220b2a1806c8712b5029ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:f94931cd1c6340c3a752db577090f7676a1a09348135d412db4a805fc387fdc5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:555200bcc71ee842a5589e5aeb0b933967fb694b3fe54c5837b827cf05dd520f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7657a1e6b3f7557e3b77bfd42a1861805bbf028627964e3994f7b4d2d8fa4510_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e8278626ff3a82564f4d86bcdfe97263dae18e8eb28d07c97ec75c0d4a151268_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b58690a76859d8c325cc305da2661ffc14fd802793f36e6fc6018d33ed8d1a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:608475d6a1981fc35e1044c1290f824d1f12c48d59a5297f08c0f0eac4e1c8fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:60bff9d3005602f993c6a48466baf5e11264e81d2d1f9ebe1afabfa78f9ff15f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:7fd04a3319f88a885f911af0952296156c89af754a8728c938baeb43fc32cf64_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2581bde4076e6e77ee31fa15dcf76678395af214d3983b3065cb36c2d64f9848_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5bd498ccf10bbf6231544850e5579c4efaa6dddc05d073b6c64626cc5c86ef73_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a0408eaec2a94d7294108fb5945c5170b9243dbf87c7a7e84ac8176935a840fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:cd04021000a13912e0d674130f204c97c9299a65159001934f553fd35d947d3a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:0b7f2a45c238f778a0af8ce70b672d2f07f945138eff24d9d8dab2f4cda42395_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1b1d1055f7c2fe909ad50f00380eaeadb750ad2c92fb6883700941703dde754e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:948cfa21c324a4ee8a6dee456f22cca589dce4cce3955388868ae7830eb8fa2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:f2076b51430cc6816a2a8a38acc240968237aa05cc33b488aabcbb62790867ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:15321111d08773607e32a82db18fd96c96968ccb56060a2d94923944a8041d65_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:226684f964088b16f45eeb88c1c72b45b97fed5472450750842d5a94ae182123_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:398711da99f0be245b1d1c33dbdc072b94b9a9e0094394bd187ca8124433de38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:5d03de91f80ebdbbbe3de76bb524bbeb4bba1c7bfbfe6e9ef3061dd62eb545e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1b896572b17d855424baf18a1bb9e58c319f5498185baeaa040d979821e5bb79_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:30105855d24dd4c3416e17eec9266e4caacbeeec9e36cc9e9ae1733af3002c6f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:44b0d159389f0fdc0abf7023190d9308dee80fd68d5279e424d4babb8b8153c6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:068d48bc63d566b84b2bd4e99d1519eec979146bf3847b2c876c4d5c53b58100_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8fb377b359ff0abe7ab81ef61c2d39fefd7945027b0ef0ce79bc6730a3e37928_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:cd3ce0111d03ba2fdbfa000158117727c1ef5d42c64152488ff6996e8bcbe183_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.18.44 is now available with updates to packages and images that fix several bugs.\n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.18.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.18.44. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:25182\n\nSecurity Fix(es):\n\n* google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation (CVE-2026-33186)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAll OpenShift Container Platform 4.18 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:25183",
"url": "https://access.redhat.com/errata/RHSA-2026:25183"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_25183.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.18.44 security and extras update",
"tracking": {
"current_release_date": "2026-06-29T17:50:53+00:00",
"generator": {
"date": "2026-06-29T17:50:53+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:25183",
"initial_release_date": "2026-06-17T05:39:27+00:00",
"revision_history": [
{
"date": "2026-06-17T05:39:27+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-17T05:40:10+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:50:53+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.18",
"product": {
"name": "Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.18::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6b2bb2fa9cf85ff14f8ab121bb56e561ad5ad51d21e5f54395940e923d5067ad_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6b2bb2fa9cf85ff14f8ab121bb56e561ad5ad51d21e5f54395940e923d5067ad_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6b2bb2fa9cf85ff14f8ab121bb56e561ad5ad51d21e5f54395940e923d5067ad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A6b2bb2fa9cf85ff14f8ab121bb56e561ad5ad51d21e5f54395940e923d5067ad?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1780980820"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a1cc536befd8a5ff3721fefef114be3a771e5bc3e862baec096f187d3eac44c3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a1cc536befd8a5ff3721fefef114be3a771e5bc3e862baec096f187d3eac44c3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a1cc536befd8a5ff3721fefef114be3a771e5bc3e862baec096f187d3eac44c3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Aa1cc536befd8a5ff3721fefef114be3a771e5bc3e862baec096f187d3eac44c3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1780985218"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5a36a4b8ee0617b0fc7a53dc73e1312c0ebd9f15e1b76df50f977edb0280e684_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5a36a4b8ee0617b0fc7a53dc73e1312c0ebd9f15e1b76df50f977edb0280e684_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5a36a4b8ee0617b0fc7a53dc73e1312c0ebd9f15e1b76df50f977edb0280e684_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A5a36a4b8ee0617b0fc7a53dc73e1312c0ebd9f15e1b76df50f977edb0280e684?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1780980355"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:e12ab95c40b730b22978b8347af251b1e45d9e0f78eac600eb512f544ee8b043_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:e12ab95c40b730b22978b8347af251b1e45d9e0f78eac600eb512f544ee8b043_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:e12ab95c40b730b22978b8347af251b1e45d9e0f78eac600eb512f544ee8b043_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3Ae12ab95c40b730b22978b8347af251b1e45d9e0f78eac600eb512f544ee8b043?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1780988052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cbbe1259462471e34d2d457236b91870f658ad850e48a2916eecd79727e6063a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cbbe1259462471e34d2d457236b91870f658ad850e48a2916eecd79727e6063a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cbbe1259462471e34d2d457236b91870f658ad850e48a2916eecd79727e6063a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Acbbe1259462471e34d2d457236b91870f658ad850e48a2916eecd79727e6063a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780980901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2a6242ed76e5a16c639f3e9cc29ffa98c4dd38b1eeea2e98998a91a7bfcffbdd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2a6242ed76e5a16c639f3e9cc29ffa98c4dd38b1eeea2e98998a91a7bfcffbdd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2a6242ed76e5a16c639f3e9cc29ffa98c4dd38b1eeea2e98998a91a7bfcffbdd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A2a6242ed76e5a16c639f3e9cc29ffa98c4dd38b1eeea2e98998a91a7bfcffbdd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780980260"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4c87d15448cd5a9f91cf4da7bab75a8ad7ff9c41d7a50593773790a2a033fd75_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4c87d15448cd5a9f91cf4da7bab75a8ad7ff9c41d7a50593773790a2a033fd75_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4c87d15448cd5a9f91cf4da7bab75a8ad7ff9c41d7a50593773790a2a033fd75_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A4c87d15448cd5a9f91cf4da7bab75a8ad7ff9c41d7a50593773790a2a033fd75?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780981193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:17c1269701067a9a8f1d7ad7d6b12a5c0ad1de0910c184406d8420ef07f2e118_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:17c1269701067a9a8f1d7ad7d6b12a5c0ad1de0910c184406d8420ef07f2e118_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:17c1269701067a9a8f1d7ad7d6b12a5c0ad1de0910c184406d8420ef07f2e118_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A17c1269701067a9a8f1d7ad7d6b12a5c0ad1de0910c184406d8420ef07f2e118?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1780982500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbaaffebd6656688829b0a807bd1740076f2d6d8d5e3657aa300713e1791dc61_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbaaffebd6656688829b0a807bd1740076f2d6d8d5e3657aa300713e1791dc61_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbaaffebd6656688829b0a807bd1740076f2d6d8d5e3657aa300713e1791dc61_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3Afbaaffebd6656688829b0a807bd1740076f2d6d8d5e3657aa300713e1791dc61?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1780980375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:dcb989aca5199e9197e5004cef42bd412b63d856d3c0fb23de188b9de32a3927_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:dcb989aca5199e9197e5004cef42bd412b63d856d3c0fb23de188b9de32a3927_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:dcb989aca5199e9197e5004cef42bd412b63d856d3c0fb23de188b9de32a3927_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3Adcb989aca5199e9197e5004cef42bd412b63d856d3c0fb23de188b9de32a3927?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1780979897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:5d8778a616e9a1f3bc076fb44ced78a06000af9c6c738355cd42065121e234ea_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:5d8778a616e9a1f3bc076fb44ced78a06000af9c6c738355cd42065121e234ea_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:5d8778a616e9a1f3bc076fb44ced78a06000af9c6c738355cd42065121e234ea_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A5d8778a616e9a1f3bc076fb44ced78a06000af9c6c738355cd42065121e234ea?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1780980326"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f01a16d58d5fd5a7366353330c82c4c1625bdeab98b04ac980c92dd3791cda2e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f01a16d58d5fd5a7366353330c82c4c1625bdeab98b04ac980c92dd3791cda2e_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f01a16d58d5fd5a7366353330c82c4c1625bdeab98b04ac980c92dd3791cda2e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3Af01a16d58d5fd5a7366353330c82c4c1625bdeab98b04ac980c92dd3791cda2e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1780980179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d8be6865a69585184a74d7b9d7e3c4295e9487d172f77688a084114b2330c21a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d8be6865a69585184a74d7b9d7e3c4295e9487d172f77688a084114b2330c21a_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d8be6865a69585184a74d7b9d7e3c4295e9487d172f77688a084114b2330c21a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Ad8be6865a69585184a74d7b9d7e3c4295e9487d172f77688a084114b2330c21a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1780987418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:136e9192928dee3b2a2b650e2998257b604d2017d3d86534182c60a5c26ba725_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:136e9192928dee3b2a2b650e2998257b604d2017d3d86534182c60a5c26ba725_arm64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:136e9192928dee3b2a2b650e2998257b604d2017d3d86534182c60a5c26ba725_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A136e9192928dee3b2a2b650e2998257b604d2017d3d86534182c60a5c26ba725?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1780988595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:cac7f82c41b4c5d56b14a894f3d70cf6d73cea1568c7ae23b26bf4d76b1ff8be_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:cac7f82c41b4c5d56b14a894f3d70cf6d73cea1568c7ae23b26bf4d76b1ff8be_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:cac7f82c41b4c5d56b14a894f3d70cf6d73cea1568c7ae23b26bf4d76b1ff8be_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3Acac7f82c41b4c5d56b14a894f3d70cf6d73cea1568c7ae23b26bf4d76b1ff8be?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1780979786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:66eaac0c0a7fd7e753e7de3c7bb4d033bf2acc0f58e1cb6e1be7c6ae294109ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:66eaac0c0a7fd7e753e7de3c7bb4d033bf2acc0f58e1cb6e1be7c6ae294109ac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:66eaac0c0a7fd7e753e7de3c7bb4d033bf2acc0f58e1cb6e1be7c6ae294109ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A66eaac0c0a7fd7e753e7de3c7bb4d033bf2acc0f58e1cb6e1be7c6ae294109ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1780983422"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d6ea27589420a9d3833141dec58ffd355cbfb5b3f4a644f1d9165d18de898f7f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d6ea27589420a9d3833141dec58ffd355cbfb5b3f4a644f1d9165d18de898f7f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d6ea27589420a9d3833141dec58ffd355cbfb5b3f4a644f1d9165d18de898f7f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Ad6ea27589420a9d3833141dec58ffd355cbfb5b3f4a644f1d9165d18de898f7f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1780984891"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:bc390567b04d943ced36774d0d23564a3ac548c7e65476511f565b3268e7e5f4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:bc390567b04d943ced36774d0d23564a3ac548c7e65476511f565b3268e7e5f4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:bc390567b04d943ced36774d0d23564a3ac548c7e65476511f565b3268e7e5f4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Abc390567b04d943ced36774d0d23564a3ac548c7e65476511f565b3268e7e5f4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1780984660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8fb8a008770a84e5773858aaa251d2b23af127a68baf5aa102b605731eb32f9b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8fb8a008770a84e5773858aaa251d2b23af127a68baf5aa102b605731eb32f9b_arm64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8fb8a008770a84e5773858aaa251d2b23af127a68baf5aa102b605731eb32f9b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A8fb8a008770a84e5773858aaa251d2b23af127a68baf5aa102b605731eb32f9b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1781099977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:29dc083a72ca8243e2cba74319507ef722b899d7d2adbb184e0f2a613685a7cc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:29dc083a72ca8243e2cba74319507ef722b899d7d2adbb184e0f2a613685a7cc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:29dc083a72ca8243e2cba74319507ef722b899d7d2adbb184e0f2a613685a7cc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A29dc083a72ca8243e2cba74319507ef722b899d7d2adbb184e0f2a613685a7cc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1780983489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:369f2e68a42db6bb9a7a9fe09ce1cfbd8cd0259152aff798c6dc3187c6932342_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:369f2e68a42db6bb9a7a9fe09ce1cfbd8cd0259152aff798c6dc3187c6932342_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:369f2e68a42db6bb9a7a9fe09ce1cfbd8cd0259152aff798c6dc3187c6932342_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A369f2e68a42db6bb9a7a9fe09ce1cfbd8cd0259152aff798c6dc3187c6932342?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1780982165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6011021567e1b310f6fe5f0e5416eac0829cb573e35de172121a652563d28637_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6011021567e1b310f6fe5f0e5416eac0829cb573e35de172121a652563d28637_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6011021567e1b310f6fe5f0e5416eac0829cb573e35de172121a652563d28637_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A6011021567e1b310f6fe5f0e5416eac0829cb573e35de172121a652563d28637?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1780982468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:27535309ffe483bfdf73b76758f97b1f748b2d0ffeb0be91e67813ac492cd570_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:27535309ffe483bfdf73b76758f97b1f748b2d0ffeb0be91e67813ac492cd570_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:27535309ffe483bfdf73b76758f97b1f748b2d0ffeb0be91e67813ac492cd570_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3A27535309ffe483bfdf73b76758f97b1f748b2d0ffeb0be91e67813ac492cd570?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9\u0026tag=1780988384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d17a681769d66685a0b7494261b076ce4cd548bd63ea15632472ce11d250aeb9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d17a681769d66685a0b7494261b076ce4cd548bd63ea15632472ce11d250aeb9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d17a681769d66685a0b7494261b076ce4cd548bd63ea15632472ce11d250aeb9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3Ad17a681769d66685a0b7494261b076ce4cd548bd63ea15632472ce11d250aeb9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router-rhel9\u0026tag=1780988211"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5386117e0836512e7d413236dd09fe0ceea6d8efb57086ac978122c9dc389f1e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5386117e0836512e7d413236dd09fe0ceea6d8efb57086ac978122c9dc389f1e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5386117e0836512e7d413236dd09fe0ceea6d8efb57086ac978122c9dc389f1e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A5386117e0836512e7d413236dd09fe0ceea6d8efb57086ac978122c9dc389f1e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1780987965"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de13ebfbaec81788cdbf0d24c4d83f33eecf6996bd4b81ab1a9d60d1925b64a1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de13ebfbaec81788cdbf0d24c4d83f33eecf6996bd4b81ab1a9d60d1925b64a1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de13ebfbaec81788cdbf0d24c4d83f33eecf6996bd4b81ab1a9d60d1925b64a1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3Ade13ebfbaec81788cdbf0d24c4d83f33eecf6996bd4b81ab1a9d60d1925b64a1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel9\u0026tag=1781087024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ee873d42877999d28e8cf0c9a2dd0193c9b925d96b804edb542e26596746113e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ee873d42877999d28e8cf0c9a2dd0193c9b925d96b804edb542e26596746113e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ee873d42877999d28e8cf0c9a2dd0193c9b925d96b804edb542e26596746113e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Aee873d42877999d28e8cf0c9a2dd0193c9b925d96b804edb542e26596746113e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1780982735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d8fa72da4fc47e2db6b63a7a68edf8d552e5109f72560aadd414af976d23eca0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d8fa72da4fc47e2db6b63a7a68edf8d552e5109f72560aadd414af976d23eca0_arm64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d8fa72da4fc47e2db6b63a7a68edf8d552e5109f72560aadd414af976d23eca0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Ad8fa72da4fc47e2db6b63a7a68edf8d552e5109f72560aadd414af976d23eca0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1781098965"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:771b9045bebbe6d595a7b43af45cb23fec31ba8b426bb2bf2538ef3e71cd71d2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:771b9045bebbe6d595a7b43af45cb23fec31ba8b426bb2bf2538ef3e71cd71d2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:771b9045bebbe6d595a7b43af45cb23fec31ba8b426bb2bf2538ef3e71cd71d2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3A771b9045bebbe6d595a7b43af45cb23fec31ba8b426bb2bf2538ef3e71cd71d2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9\u0026tag=1780980462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:eda0961b2797331cebf194a05ac642394b34ab65dadbffa8c3affc6bfbfe2a1e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:eda0961b2797331cebf194a05ac642394b34ab65dadbffa8c3affc6bfbfe2a1e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:eda0961b2797331cebf194a05ac642394b34ab65dadbffa8c3affc6bfbfe2a1e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3Aeda0961b2797331cebf194a05ac642394b34ab65dadbffa8c3affc6bfbfe2a1e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator\u0026tag=1781086944"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:10ae223cd4364291504b88b702a86246162f08d3a69feb32d27b8c20d4859368_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:10ae223cd4364291504b88b702a86246162f08d3a69feb32d27b8c20d4859368_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:10ae223cd4364291504b88b702a86246162f08d3a69feb32d27b8c20d4859368_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A10ae223cd4364291504b88b702a86246162f08d3a69feb32d27b8c20d4859368?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9\u0026tag=1780988189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:b1bdce7ab2da5d78661deb28655869c3ef5b465c84deaed87f1051a9ff80de46_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:b1bdce7ab2da5d78661deb28655869c3ef5b465c84deaed87f1051a9ff80de46_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:b1bdce7ab2da5d78661deb28655869c3ef5b465c84deaed87f1051a9ff80de46_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3Ab1bdce7ab2da5d78661deb28655869c3ef5b465c84deaed87f1051a9ff80de46?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1780980574"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8d83af3f1b49df76b061185784f8fb09cdbe2a69227396aeae29acef430151b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8d83af3f1b49df76b061185784f8fb09cdbe2a69227396aeae29acef430151b2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8d83af3f1b49df76b061185784f8fb09cdbe2a69227396aeae29acef430151b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A8d83af3f1b49df76b061185784f8fb09cdbe2a69227396aeae29acef430151b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1780979758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:66247c4f0f00a63379797545da76f072b9d04d905c3490c1e6b06d2a47432586_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:66247c4f0f00a63379797545da76f072b9d04d905c3490c1e6b06d2a47432586_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:66247c4f0f00a63379797545da76f072b9d04d905c3490c1e6b06d2a47432586_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A66247c4f0f00a63379797545da76f072b9d04d905c3490c1e6b06d2a47432586?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1780977730"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:631ef47a1169586cb737bfda8aef9597baeb44a938e7ddcab8e310c26a8678df_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:631ef47a1169586cb737bfda8aef9597baeb44a938e7ddcab8e310c26a8678df_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:631ef47a1169586cb737bfda8aef9597baeb44a938e7ddcab8e310c26a8678df_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A631ef47a1169586cb737bfda8aef9597baeb44a938e7ddcab8e310c26a8678df?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1780986391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c26c4d6ccaa5bd9ded34f8ee9bc1cd0582bf16ad32fe4d180e8185b3e873ecf6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c26c4d6ccaa5bd9ded34f8ee9bc1cd0582bf16ad32fe4d180e8185b3e873ecf6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c26c4d6ccaa5bd9ded34f8ee9bc1cd0582bf16ad32fe4d180e8185b3e873ecf6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3Ac26c4d6ccaa5bd9ded34f8ee9bc1cd0582bf16ad32fe4d180e8185b3e873ecf6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1780979769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:17eaea4bbaa6e62c74c1c6827bbcc9d661c3874dad7b55e30da8f185d7adb9e3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:17eaea4bbaa6e62c74c1c6827bbcc9d661c3874dad7b55e30da8f185d7adb9e3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:17eaea4bbaa6e62c74c1c6827bbcc9d661c3874dad7b55e30da8f185d7adb9e3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A17eaea4bbaa6e62c74c1c6827bbcc9d661c3874dad7b55e30da8f185d7adb9e3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1780983398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:515efa006e60800c5d490d5344f5a074c8ce2def306693f3173dc525f908b989_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:515efa006e60800c5d490d5344f5a074c8ce2def306693f3173dc525f908b989_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:515efa006e60800c5d490d5344f5a074c8ce2def306693f3173dc525f908b989_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A515efa006e60800c5d490d5344f5a074c8ce2def306693f3173dc525f908b989?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1780984871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0b1448f15c83b047b688fa8f20c02198d8ee2d5493a1b16641289e464cb32f05_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0b1448f15c83b047b688fa8f20c02198d8ee2d5493a1b16641289e464cb32f05_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0b1448f15c83b047b688fa8f20c02198d8ee2d5493a1b16641289e464cb32f05_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A0b1448f15c83b047b688fa8f20c02198d8ee2d5493a1b16641289e464cb32f05?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1780981207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:bb901c64bf59bdd90c1f3ac0bb9db1e8dc7d52f55c6dea6912c0f7b0e1ce26d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:bb901c64bf59bdd90c1f3ac0bb9db1e8dc7d52f55c6dea6912c0f7b0e1ce26d9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:bb901c64bf59bdd90c1f3ac0bb9db1e8dc7d52f55c6dea6912c0f7b0e1ce26d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3Abb901c64bf59bdd90c1f3ac0bb9db1e8dc7d52f55c6dea6912c0f7b0e1ce26d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1780984039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Af7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1780980450"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Af7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9\u0026tag=1780980450"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1780980466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64",
"product_id": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/rdma-cni-rhel9\u0026tag=1780980466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:5d03de91f80ebdbbbe3de76bb524bbeb4bba1c7bfbfe6e9ef3061dd62eb545e8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:5d03de91f80ebdbbbe3de76bb524bbeb4bba1c7bfbfe6e9ef3061dd62eb545e8_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:5d03de91f80ebdbbbe3de76bb524bbeb4bba1c7bfbfe6e9ef3061dd62eb545e8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A5d03de91f80ebdbbbe3de76bb524bbeb4bba1c7bfbfe6e9ef3061dd62eb545e8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1780980031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:948cfa21c324a4ee8a6dee456f22cca589dce4cce3955388868ae7830eb8fa2a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:948cfa21c324a4ee8a6dee456f22cca589dce4cce3955388868ae7830eb8fa2a_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:948cfa21c324a4ee8a6dee456f22cca589dce4cce3955388868ae7830eb8fa2a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A948cfa21c324a4ee8a6dee456f22cca589dce4cce3955388868ae7830eb8fa2a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1780986468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:c81c37336178f676b92b8a64a9c37272cead0018d125ce49a393dddccf26f0f4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:c81c37336178f676b92b8a64a9c37272cead0018d125ce49a393dddccf26f0f4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:c81c37336178f676b92b8a64a9c37272cead0018d125ce49a393dddccf26f0f4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3Ac81c37336178f676b92b8a64a9c37272cead0018d125ce49a393dddccf26f0f4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1780980916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:30105855d24dd4c3416e17eec9266e4caacbeeec9e36cc9e9ae1733af3002c6f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:30105855d24dd4c3416e17eec9266e4caacbeeec9e36cc9e9ae1733af3002c6f_arm64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:30105855d24dd4c3416e17eec9266e4caacbeeec9e36cc9e9ae1733af3002c6f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A30105855d24dd4c3416e17eec9266e4caacbeeec9e36cc9e9ae1733af3002c6f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1780984901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:cd3ce0111d03ba2fdbfa000158117727c1ef5d42c64152488ff6996e8bcbe183_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:cd3ce0111d03ba2fdbfa000158117727c1ef5d42c64152488ff6996e8bcbe183_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:cd3ce0111d03ba2fdbfa000158117727c1ef5d42c64152488ff6996e8bcbe183_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3Acd3ce0111d03ba2fdbfa000158117727c1ef5d42c64152488ff6996e8bcbe183?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1780979674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:51b605ad52f3f2e716c3cbe0f1b39657713ef1f908ec3fa96f6ef9bcd06929fd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:51b605ad52f3f2e716c3cbe0f1b39657713ef1f908ec3fa96f6ef9bcd06929fd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:51b605ad52f3f2e716c3cbe0f1b39657713ef1f908ec3fa96f6ef9bcd06929fd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A51b605ad52f3f2e716c3cbe0f1b39657713ef1f908ec3fa96f6ef9bcd06929fd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1780980432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:fc734a1d7408a04489958f6e4f8345fa5efe0a38a3a9807c21645446e2818667_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:fc734a1d7408a04489958f6e4f8345fa5efe0a38a3a9807c21645446e2818667_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:fc734a1d7408a04489958f6e4f8345fa5efe0a38a3a9807c21645446e2818667_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3Afc734a1d7408a04489958f6e4f8345fa5efe0a38a3a9807c21645446e2818667?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1780980480"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:d4c540639f3f249336e783f05eceb9dc474c482bb5ec61a5e5600642eeb3313d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:d4c540639f3f249336e783f05eceb9dc474c482bb5ec61a5e5600642eeb3313d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:d4c540639f3f249336e783f05eceb9dc474c482bb5ec61a5e5600642eeb3313d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3Ad4c540639f3f249336e783f05eceb9dc474c482bb5ec61a5e5600642eeb3313d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1780979760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:f94931cd1c6340c3a752db577090f7676a1a09348135d412db4a805fc387fdc5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:f94931cd1c6340c3a752db577090f7676a1a09348135d412db4a805fc387fdc5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:f94931cd1c6340c3a752db577090f7676a1a09348135d412db4a805fc387fdc5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3Af94931cd1c6340c3a752db577090f7676a1a09348135d412db4a805fc387fdc5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1780981217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:555200bcc71ee842a5589e5aeb0b933967fb694b3fe54c5837b827cf05dd520f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:555200bcc71ee842a5589e5aeb0b933967fb694b3fe54c5837b827cf05dd520f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:555200bcc71ee842a5589e5aeb0b933967fb694b3fe54c5837b827cf05dd520f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A555200bcc71ee842a5589e5aeb0b933967fb694b3fe54c5837b827cf05dd520f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1780980234"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:cd04021000a13912e0d674130f204c97c9299a65159001934f553fd35d947d3a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:cd04021000a13912e0d674130f204c97c9299a65159001934f553fd35d947d3a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:cd04021000a13912e0d674130f204c97c9299a65159001934f553fd35d947d3a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3Acd04021000a13912e0d674130f204c97c9299a65159001934f553fd35d947d3a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1780983645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b58690a76859d8c325cc305da2661ffc14fd802793f36e6fc6018d33ed8d1a8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b58690a76859d8c325cc305da2661ffc14fd802793f36e6fc6018d33ed8d1a8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b58690a76859d8c325cc305da2661ffc14fd802793f36e6fc6018d33ed8d1a8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A5b58690a76859d8c325cc305da2661ffc14fd802793f36e6fc6018d33ed8d1a8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1780988145"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:bbc22eb8e3c8b1a8b6e4c4c67a7de7029a663844b4a32d97ce4cb9409c6a7243_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:bbc22eb8e3c8b1a8b6e4c4c67a7de7029a663844b4a32d97ce4cb9409c6a7243_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:bbc22eb8e3c8b1a8b6e4c4c67a7de7029a663844b4a32d97ce4cb9409c6a7243_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Abbc22eb8e3c8b1a8b6e4c4c67a7de7029a663844b4a32d97ce4cb9409c6a7243?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1780980820"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:256b9cdf5cd6f7e32a11f65f7534e1ca39a3fccb64d411c7e01dd6f5e600c237_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:256b9cdf5cd6f7e32a11f65f7534e1ca39a3fccb64d411c7e01dd6f5e600c237_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:256b9cdf5cd6f7e32a11f65f7534e1ca39a3fccb64d411c7e01dd6f5e600c237_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A256b9cdf5cd6f7e32a11f65f7534e1ca39a3fccb64d411c7e01dd6f5e600c237?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1780985218"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:7d0ee426415366ae01e279d9d37910f512101d0ca3954fada90f7ef41c463623_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:7d0ee426415366ae01e279d9d37910f512101d0ca3954fada90f7ef41c463623_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:7d0ee426415366ae01e279d9d37910f512101d0ca3954fada90f7ef41c463623_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A7d0ee426415366ae01e279d9d37910f512101d0ca3954fada90f7ef41c463623?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1780980355"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f20e5378fed66eac4219322baa1c6a8afe929f63d9def922e0d904b398fa70e9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f20e5378fed66eac4219322baa1c6a8afe929f63d9def922e0d904b398fa70e9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f20e5378fed66eac4219322baa1c6a8afe929f63d9def922e0d904b398fa70e9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3Af20e5378fed66eac4219322baa1c6a8afe929f63d9def922e0d904b398fa70e9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1780988052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:75e9dfe6ade249647f22ace08fb6261bf010a5cbd649503dfd36022b0ac21947_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:75e9dfe6ade249647f22ace08fb6261bf010a5cbd649503dfd36022b0ac21947_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:75e9dfe6ade249647f22ace08fb6261bf010a5cbd649503dfd36022b0ac21947_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A75e9dfe6ade249647f22ace08fb6261bf010a5cbd649503dfd36022b0ac21947?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780980901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ad94418151b25cbf9cac34d024e453ce4a1da18a9a8a037c6cd501cc81be5141_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ad94418151b25cbf9cac34d024e453ce4a1da18a9a8a037c6cd501cc81be5141_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ad94418151b25cbf9cac34d024e453ce4a1da18a9a8a037c6cd501cc81be5141_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Aad94418151b25cbf9cac34d024e453ce4a1da18a9a8a037c6cd501cc81be5141?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780980260"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c0a7a8aca0b9c4e91ac53aadae071314d6a767bcfb5609a4efdc669febc0ff0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c0a7a8aca0b9c4e91ac53aadae071314d6a767bcfb5609a4efdc669febc0ff0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c0a7a8aca0b9c4e91ac53aadae071314d6a767bcfb5609a4efdc669febc0ff0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A0c0a7a8aca0b9c4e91ac53aadae071314d6a767bcfb5609a4efdc669febc0ff0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780981193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9f57e81d03517f434e21aa6167cbfcc2f7a069bac497faf0222a030a9d63ff84_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9f57e81d03517f434e21aa6167cbfcc2f7a069bac497faf0222a030a9d63ff84_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9f57e81d03517f434e21aa6167cbfcc2f7a069bac497faf0222a030a9d63ff84_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A9f57e81d03517f434e21aa6167cbfcc2f7a069bac497faf0222a030a9d63ff84?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1780982500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:35a145bb29bfd1c31730b192dd4f5a2040c8204bd5618fa7d06d6aaaf931ad99_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:35a145bb29bfd1c31730b192dd4f5a2040c8204bd5618fa7d06d6aaaf931ad99_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:35a145bb29bfd1c31730b192dd4f5a2040c8204bd5618fa7d06d6aaaf931ad99_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A35a145bb29bfd1c31730b192dd4f5a2040c8204bd5618fa7d06d6aaaf931ad99?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1780980375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:510fa5b2b426e01e06907deba9ea30bd177e596a3b18e2919f0ddff82843b4fb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:510fa5b2b426e01e06907deba9ea30bd177e596a3b18e2919f0ddff82843b4fb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:510fa5b2b426e01e06907deba9ea30bd177e596a3b18e2919f0ddff82843b4fb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A510fa5b2b426e01e06907deba9ea30bd177e596a3b18e2919f0ddff82843b4fb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1780979897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:de20468c4b2b46a39243fbfb86c3c4d2bb9beedfb2293c669e90ff7dabb46a16_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:de20468c4b2b46a39243fbfb86c3c4d2bb9beedfb2293c669e90ff7dabb46a16_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:de20468c4b2b46a39243fbfb86c3c4d2bb9beedfb2293c669e90ff7dabb46a16_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Ade20468c4b2b46a39243fbfb86c3c4d2bb9beedfb2293c669e90ff7dabb46a16?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1780980326"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:58c01f288f26e46a5db54b1720e908cd66874692f1481d3795761faddcade35b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:58c01f288f26e46a5db54b1720e908cd66874692f1481d3795761faddcade35b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:58c01f288f26e46a5db54b1720e908cd66874692f1481d3795761faddcade35b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A58c01f288f26e46a5db54b1720e908cd66874692f1481d3795761faddcade35b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1780980179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ca042c7fcc0d046b98c239c109399f9bb786072075bffabcf391604f206d5671_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ca042c7fcc0d046b98c239c109399f9bb786072075bffabcf391604f206d5671_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ca042c7fcc0d046b98c239c109399f9bb786072075bffabcf391604f206d5671_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Aca042c7fcc0d046b98c239c109399f9bb786072075bffabcf391604f206d5671?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1780987418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:6a9debd24c7c1f9fca5f0484d72737cb2c9c4f11800c3333fb5cb719e9fb68ca_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:6a9debd24c7c1f9fca5f0484d72737cb2c9c4f11800c3333fb5cb719e9fb68ca_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:6a9debd24c7c1f9fca5f0484d72737cb2c9c4f11800c3333fb5cb719e9fb68ca_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A6a9debd24c7c1f9fca5f0484d72737cb2c9c4f11800c3333fb5cb719e9fb68ca?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1780988595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:761a7b01044002c74e7aba067e837355523f1a339969070c0d9d433595616e11_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:761a7b01044002c74e7aba067e837355523f1a339969070c0d9d433595616e11_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:761a7b01044002c74e7aba067e837355523f1a339969070c0d9d433595616e11_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A761a7b01044002c74e7aba067e837355523f1a339969070c0d9d433595616e11?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1780979786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:63f106ab0f9ea50868debd99cdb6d07c45b9137ca033862536c84da5f920b330_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:63f106ab0f9ea50868debd99cdb6d07c45b9137ca033862536c84da5f920b330_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:63f106ab0f9ea50868debd99cdb6d07c45b9137ca033862536c84da5f920b330_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A63f106ab0f9ea50868debd99cdb6d07c45b9137ca033862536c84da5f920b330?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1780983422"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:7f419f3f95329b6631d0028c1c34bf87dae05458125c99032ccd9ef6d25a9817_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:7f419f3f95329b6631d0028c1c34bf87dae05458125c99032ccd9ef6d25a9817_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:7f419f3f95329b6631d0028c1c34bf87dae05458125c99032ccd9ef6d25a9817_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A7f419f3f95329b6631d0028c1c34bf87dae05458125c99032ccd9ef6d25a9817?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1780984891"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:f81893728b3145fd8cf3124c8322152a39a6a6dcecc22c5635f708d70d6441e9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:f81893728b3145fd8cf3124c8322152a39a6a6dcecc22c5635f708d70d6441e9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:f81893728b3145fd8cf3124c8322152a39a6a6dcecc22c5635f708d70d6441e9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Af81893728b3145fd8cf3124c8322152a39a6a6dcecc22c5635f708d70d6441e9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1780984660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c93d7dc23599ae79223b1cbd7dc62b63f6e6c9985d26b06bc6f3a692b8568096_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c93d7dc23599ae79223b1cbd7dc62b63f6e6c9985d26b06bc6f3a692b8568096_ppc64le",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c93d7dc23599ae79223b1cbd7dc62b63f6e6c9985d26b06bc6f3a692b8568096_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Ac93d7dc23599ae79223b1cbd7dc62b63f6e6c9985d26b06bc6f3a692b8568096?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1781099977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6bd2c9cc84327f1150b503a960d4a39ee3cd89864e340b7adb6af23c515a7cea_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6bd2c9cc84327f1150b503a960d4a39ee3cd89864e340b7adb6af23c515a7cea_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6bd2c9cc84327f1150b503a960d4a39ee3cd89864e340b7adb6af23c515a7cea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A6bd2c9cc84327f1150b503a960d4a39ee3cd89864e340b7adb6af23c515a7cea?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1780983489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:52df8f81e7dbe8760ccc4f802e996c078af59d30b43f8fb846924c2d8a8524b7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:52df8f81e7dbe8760ccc4f802e996c078af59d30b43f8fb846924c2d8a8524b7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:52df8f81e7dbe8760ccc4f802e996c078af59d30b43f8fb846924c2d8a8524b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A52df8f81e7dbe8760ccc4f802e996c078af59d30b43f8fb846924c2d8a8524b7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1780982165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6cad7b501d971d385c8ba32a6e3f0dc3dc9cdc8ef555b0f0cc520bb90dabab5c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6cad7b501d971d385c8ba32a6e3f0dc3dc9cdc8ef555b0f0cc520bb90dabab5c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6cad7b501d971d385c8ba32a6e3f0dc3dc9cdc8ef555b0f0cc520bb90dabab5c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A6cad7b501d971d385c8ba32a6e3f0dc3dc9cdc8ef555b0f0cc520bb90dabab5c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1780982468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:45f231114e1ddd0f7befba9cd252fc146db8a7a26c24947835ea5949202b9d60_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:45f231114e1ddd0f7befba9cd252fc146db8a7a26c24947835ea5949202b9d60_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:45f231114e1ddd0f7befba9cd252fc146db8a7a26c24947835ea5949202b9d60_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3A45f231114e1ddd0f7befba9cd252fc146db8a7a26c24947835ea5949202b9d60?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9\u0026tag=1780988384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:1c9cc47a78fa993f8d29142220fae37259c4179d8c414d63d64c8899da991e20_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:1c9cc47a78fa993f8d29142220fae37259c4179d8c414d63d64c8899da991e20_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:1c9cc47a78fa993f8d29142220fae37259c4179d8c414d63d64c8899da991e20_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A1c9cc47a78fa993f8d29142220fae37259c4179d8c414d63d64c8899da991e20?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router-rhel9\u0026tag=1780988211"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:197409a9cfd1994b720a409a5b533481224d936d8a497b2366a82a5ba89a825b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:197409a9cfd1994b720a409a5b533481224d936d8a497b2366a82a5ba89a825b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:197409a9cfd1994b720a409a5b533481224d936d8a497b2366a82a5ba89a825b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A197409a9cfd1994b720a409a5b533481224d936d8a497b2366a82a5ba89a825b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1780987965"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:96d0b82bf59d09b8c8fc3ddc533d6c3f5d139d69f058f4171910ce57a8cef9c9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:96d0b82bf59d09b8c8fc3ddc533d6c3f5d139d69f058f4171910ce57a8cef9c9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:96d0b82bf59d09b8c8fc3ddc533d6c3f5d139d69f058f4171910ce57a8cef9c9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3A96d0b82bf59d09b8c8fc3ddc533d6c3f5d139d69f058f4171910ce57a8cef9c9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel9\u0026tag=1781087024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ce32166f81967cc551375285d9659c4511888a843e825165e53264bda6d29735_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ce32166f81967cc551375285d9659c4511888a843e825165e53264bda6d29735_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ce32166f81967cc551375285d9659c4511888a843e825165e53264bda6d29735_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Ace32166f81967cc551375285d9659c4511888a843e825165e53264bda6d29735?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1780982735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:36282ae55143491dd562a82d206bc2e9ea8d4f5efefe3197451f1c539ad7f7f5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:36282ae55143491dd562a82d206bc2e9ea8d4f5efefe3197451f1c539ad7f7f5_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:36282ae55143491dd562a82d206bc2e9ea8d4f5efefe3197451f1c539ad7f7f5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A36282ae55143491dd562a82d206bc2e9ea8d4f5efefe3197451f1c539ad7f7f5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1781098965"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:555e55dee776735a1748818ed0f20575fc0e8cd338d18919a75016a7abe88223_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:555e55dee776735a1748818ed0f20575fc0e8cd338d18919a75016a7abe88223_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:555e55dee776735a1748818ed0f20575fc0e8cd338d18919a75016a7abe88223_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A555e55dee776735a1748818ed0f20575fc0e8cd338d18919a75016a7abe88223?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9\u0026tag=1780988189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8020d174ca38de3e6fd043e88d9cc99bcff3f122213fcf7f3401109840e5f836_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8020d174ca38de3e6fd043e88d9cc99bcff3f122213fcf7f3401109840e5f836_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8020d174ca38de3e6fd043e88d9cc99bcff3f122213fcf7f3401109840e5f836_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A8020d174ca38de3e6fd043e88d9cc99bcff3f122213fcf7f3401109840e5f836?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1780980574"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:4e1a179fbef4040805c8459e2b95ebe19ce0700588448a517a59a9cd53b729e2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:4e1a179fbef4040805c8459e2b95ebe19ce0700588448a517a59a9cd53b729e2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:4e1a179fbef4040805c8459e2b95ebe19ce0700588448a517a59a9cd53b729e2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A4e1a179fbef4040805c8459e2b95ebe19ce0700588448a517a59a9cd53b729e2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1780979758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:c7c19ecdea825d8402fce7ee3f07f825a1209b1f0abb7d8b885bad4fa8e824c0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:c7c19ecdea825d8402fce7ee3f07f825a1209b1f0abb7d8b885bad4fa8e824c0_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:c7c19ecdea825d8402fce7ee3f07f825a1209b1f0abb7d8b885bad4fa8e824c0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Ac7c19ecdea825d8402fce7ee3f07f825a1209b1f0abb7d8b885bad4fa8e824c0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1780977730"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f410d487f10ece94e49ad03aa9aa54b6584828b6635c5cd66278a069ed9a3f36_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f410d487f10ece94e49ad03aa9aa54b6584828b6635c5cd66278a069ed9a3f36_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f410d487f10ece94e49ad03aa9aa54b6584828b6635c5cd66278a069ed9a3f36_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Af410d487f10ece94e49ad03aa9aa54b6584828b6635c5cd66278a069ed9a3f36?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1780986391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:7f85ff091a0d8b06eccb238a2fd760ca3bca967884d68c1f4534d469f604d1ee_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:7f85ff091a0d8b06eccb238a2fd760ca3bca967884d68c1f4534d469f604d1ee_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:7f85ff091a0d8b06eccb238a2fd760ca3bca967884d68c1f4534d469f604d1ee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A7f85ff091a0d8b06eccb238a2fd760ca3bca967884d68c1f4534d469f604d1ee?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1780979769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:29a02a53341de32baa04c8397c101cf63dcc62fe367dddef2d5018f3b29e9e2d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:29a02a53341de32baa04c8397c101cf63dcc62fe367dddef2d5018f3b29e9e2d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:29a02a53341de32baa04c8397c101cf63dcc62fe367dddef2d5018f3b29e9e2d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A29a02a53341de32baa04c8397c101cf63dcc62fe367dddef2d5018f3b29e9e2d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1780983398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f16e995e21cd183002d86bafb210c819e42233171bb18efebe8755f6346719_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f16e995e21cd183002d86bafb210c819e42233171bb18efebe8755f6346719_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f16e995e21cd183002d86bafb210c819e42233171bb18efebe8755f6346719_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A43f16e995e21cd183002d86bafb210c819e42233171bb18efebe8755f6346719?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1780984871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2cac34759fa7f1896fa88f0805e862fa9ccb7ec3168344fcb2e2db79a3bfd301_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2cac34759fa7f1896fa88f0805e862fa9ccb7ec3168344fcb2e2db79a3bfd301_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2cac34759fa7f1896fa88f0805e862fa9ccb7ec3168344fcb2e2db79a3bfd301_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A2cac34759fa7f1896fa88f0805e862fa9ccb7ec3168344fcb2e2db79a3bfd301?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1780981207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:04ed231913652135d55f7568625b24bdae36eecb758b626f67f924ca2e11f9c9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:04ed231913652135d55f7568625b24bdae36eecb758b626f67f924ca2e11f9c9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:04ed231913652135d55f7568625b24bdae36eecb758b626f67f924ca2e11f9c9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A04ed231913652135d55f7568625b24bdae36eecb758b626f67f924ca2e11f9c9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1780984039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Aa69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1780980450"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Aa69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9\u0026tag=1780980450"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1780980466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le",
"product_id": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/rdma-cni-rhel9\u0026tag=1780980466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:398711da99f0be245b1d1c33dbdc072b94b9a9e0094394bd187ca8124433de38_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:398711da99f0be245b1d1c33dbdc072b94b9a9e0094394bd187ca8124433de38_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:398711da99f0be245b1d1c33dbdc072b94b9a9e0094394bd187ca8124433de38_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A398711da99f0be245b1d1c33dbdc072b94b9a9e0094394bd187ca8124433de38?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1780980031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:f2076b51430cc6816a2a8a38acc240968237aa05cc33b488aabcbb62790867ca_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:f2076b51430cc6816a2a8a38acc240968237aa05cc33b488aabcbb62790867ca_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:f2076b51430cc6816a2a8a38acc240968237aa05cc33b488aabcbb62790867ca_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3Af2076b51430cc6816a2a8a38acc240968237aa05cc33b488aabcbb62790867ca?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1780986468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0e4133151f34a78b61b784f5460e598020d1b663bac2f2e4402eeb8c7f1de0e2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0e4133151f34a78b61b784f5460e598020d1b663bac2f2e4402eeb8c7f1de0e2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0e4133151f34a78b61b784f5460e598020d1b663bac2f2e4402eeb8c7f1de0e2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A0e4133151f34a78b61b784f5460e598020d1b663bac2f2e4402eeb8c7f1de0e2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1780980916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:44b0d159389f0fdc0abf7023190d9308dee80fd68d5279e424d4babb8b8153c6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:44b0d159389f0fdc0abf7023190d9308dee80fd68d5279e424d4babb8b8153c6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:44b0d159389f0fdc0abf7023190d9308dee80fd68d5279e424d4babb8b8153c6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A44b0d159389f0fdc0abf7023190d9308dee80fd68d5279e424d4babb8b8153c6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1780984901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:068d48bc63d566b84b2bd4e99d1519eec979146bf3847b2c876c4d5c53b58100_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:068d48bc63d566b84b2bd4e99d1519eec979146bf3847b2c876c4d5c53b58100_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:068d48bc63d566b84b2bd4e99d1519eec979146bf3847b2c876c4d5c53b58100_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A068d48bc63d566b84b2bd4e99d1519eec979146bf3847b2c876c4d5c53b58100?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1780979674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:17861a1a45c4c5baa4f4045b01f1c85a73b3be00db2cc097dfc42a7994916e46_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:17861a1a45c4c5baa4f4045b01f1c85a73b3be00db2cc097dfc42a7994916e46_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:17861a1a45c4c5baa4f4045b01f1c85a73b3be00db2cc097dfc42a7994916e46_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A17861a1a45c4c5baa4f4045b01f1c85a73b3be00db2cc097dfc42a7994916e46?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1780980432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:b020a11975467bf1482857040560c3e2bf14e3506bdc512d134b73c6b968bf09_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:b020a11975467bf1482857040560c3e2bf14e3506bdc512d134b73c6b968bf09_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:b020a11975467bf1482857040560c3e2bf14e3506bdc512d134b73c6b968bf09_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3Ab020a11975467bf1482857040560c3e2bf14e3506bdc512d134b73c6b968bf09?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1780980480"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:7e63391eeea9b22ff5767fad7523138aa7654a487e88dc52cd85de9ad180a404_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:7e63391eeea9b22ff5767fad7523138aa7654a487e88dc52cd85de9ad180a404_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:7e63391eeea9b22ff5767fad7523138aa7654a487e88dc52cd85de9ad180a404_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A7e63391eeea9b22ff5767fad7523138aa7654a487e88dc52cd85de9ad180a404?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1780979760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9b53af12f6a034797d30b2a2610bb1f2963565ede8b0eddd61c9c77a39298995_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9b53af12f6a034797d30b2a2610bb1f2963565ede8b0eddd61c9c77a39298995_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9b53af12f6a034797d30b2a2610bb1f2963565ede8b0eddd61c9c77a39298995_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A9b53af12f6a034797d30b2a2610bb1f2963565ede8b0eddd61c9c77a39298995?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1780981217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e8278626ff3a82564f4d86bcdfe97263dae18e8eb28d07c97ec75c0d4a151268_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e8278626ff3a82564f4d86bcdfe97263dae18e8eb28d07c97ec75c0d4a151268_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e8278626ff3a82564f4d86bcdfe97263dae18e8eb28d07c97ec75c0d4a151268_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3Ae8278626ff3a82564f4d86bcdfe97263dae18e8eb28d07c97ec75c0d4a151268?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1780980234"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2581bde4076e6e77ee31fa15dcf76678395af214d3983b3065cb36c2d64f9848_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2581bde4076e6e77ee31fa15dcf76678395af214d3983b3065cb36c2d64f9848_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2581bde4076e6e77ee31fa15dcf76678395af214d3983b3065cb36c2d64f9848_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A2581bde4076e6e77ee31fa15dcf76678395af214d3983b3065cb36c2d64f9848?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1780983645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:7fd04a3319f88a885f911af0952296156c89af754a8728c938baeb43fc32cf64_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:7fd04a3319f88a885f911af0952296156c89af754a8728c938baeb43fc32cf64_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:7fd04a3319f88a885f911af0952296156c89af754a8728c938baeb43fc32cf64_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A7fd04a3319f88a885f911af0952296156c89af754a8728c938baeb43fc32cf64?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1780988145"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:80c62b74fdcc97a49b2d574bc03b30849ffcb7d616e4b2549ad0259c2b29ad9c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:80c62b74fdcc97a49b2d574bc03b30849ffcb7d616e4b2549ad0259c2b29ad9c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:80c62b74fdcc97a49b2d574bc03b30849ffcb7d616e4b2549ad0259c2b29ad9c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A80c62b74fdcc97a49b2d574bc03b30849ffcb7d616e4b2549ad0259c2b29ad9c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1780980820"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2df60a790d449041be77c83066368408cf3a62fd2cadc06fc1e3b2e3f9b074b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2df60a790d449041be77c83066368408cf3a62fd2cadc06fc1e3b2e3f9b074b8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2df60a790d449041be77c83066368408cf3a62fd2cadc06fc1e3b2e3f9b074b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A2df60a790d449041be77c83066368408cf3a62fd2cadc06fc1e3b2e3f9b074b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1780985218"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:318a0790da610c038878f604984d2097fd343950c7a19be380c0eb93576ce149_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:318a0790da610c038878f604984d2097fd343950c7a19be380c0eb93576ce149_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:318a0790da610c038878f604984d2097fd343950c7a19be380c0eb93576ce149_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A318a0790da610c038878f604984d2097fd343950c7a19be380c0eb93576ce149?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1780980355"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:c41824e92b4311f735409b231983ed7e69400752527c7a0b9a5d86295743dfce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:c41824e92b4311f735409b231983ed7e69400752527c7a0b9a5d86295743dfce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:c41824e92b4311f735409b231983ed7e69400752527c7a0b9a5d86295743dfce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3Ac41824e92b4311f735409b231983ed7e69400752527c7a0b9a5d86295743dfce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1780988052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:35529853993d22db0e171ead911ad6be43aad6fb7412ad60cc8780dd041eeac6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:35529853993d22db0e171ead911ad6be43aad6fb7412ad60cc8780dd041eeac6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:35529853993d22db0e171ead911ad6be43aad6fb7412ad60cc8780dd041eeac6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A35529853993d22db0e171ead911ad6be43aad6fb7412ad60cc8780dd041eeac6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780980901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ce77d59453ff13bc72e6aea66117e5df0e435bc5e483dd4b8dcfb480c92780e0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ce77d59453ff13bc72e6aea66117e5df0e435bc5e483dd4b8dcfb480c92780e0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ce77d59453ff13bc72e6aea66117e5df0e435bc5e483dd4b8dcfb480c92780e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Ace77d59453ff13bc72e6aea66117e5df0e435bc5e483dd4b8dcfb480c92780e0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780980260"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:5892097dad581a64c8e719ab40779017ef76eaf9f26dd427f5a3a958526b8878_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:5892097dad581a64c8e719ab40779017ef76eaf9f26dd427f5a3a958526b8878_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:5892097dad581a64c8e719ab40779017ef76eaf9f26dd427f5a3a958526b8878_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A5892097dad581a64c8e719ab40779017ef76eaf9f26dd427f5a3a958526b8878?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780981193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:05c6827b78a5be71ae14dbd308cad44b474fd45396a0a275070615123845dc83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:05c6827b78a5be71ae14dbd308cad44b474fd45396a0a275070615123845dc83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:05c6827b78a5be71ae14dbd308cad44b474fd45396a0a275070615123845dc83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A05c6827b78a5be71ae14dbd308cad44b474fd45396a0a275070615123845dc83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1780982500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:e21440158d43b96d2defd42f27e2945e612dd4554796b9d30fc052bfe2a43389_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:e21440158d43b96d2defd42f27e2945e612dd4554796b9d30fc052bfe2a43389_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:e21440158d43b96d2defd42f27e2945e612dd4554796b9d30fc052bfe2a43389_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3Ae21440158d43b96d2defd42f27e2945e612dd4554796b9d30fc052bfe2a43389?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1780980375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:2311e3a8e8adb67d8c72c0df1dc473d7202824938491b82285989bfb10a10ae0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:2311e3a8e8adb67d8c72c0df1dc473d7202824938491b82285989bfb10a10ae0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:2311e3a8e8adb67d8c72c0df1dc473d7202824938491b82285989bfb10a10ae0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A2311e3a8e8adb67d8c72c0df1dc473d7202824938491b82285989bfb10a10ae0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1780979897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:d35059c83a8d8eb8338e3443521228908e53a38b6d50b1d8f5680417e6c5a74c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:d35059c83a8d8eb8338e3443521228908e53a38b6d50b1d8f5680417e6c5a74c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:d35059c83a8d8eb8338e3443521228908e53a38b6d50b1d8f5680417e6c5a74c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Ad35059c83a8d8eb8338e3443521228908e53a38b6d50b1d8f5680417e6c5a74c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1780980326"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:be1de44d356b34123bd72ac93501b1e3399bc0d7f454ab41dbf9ee1e891c5b6a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:be1de44d356b34123bd72ac93501b1e3399bc0d7f454ab41dbf9ee1e891c5b6a_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:be1de44d356b34123bd72ac93501b1e3399bc0d7f454ab41dbf9ee1e891c5b6a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3Abe1de44d356b34123bd72ac93501b1e3399bc0d7f454ab41dbf9ee1e891c5b6a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1780980179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:fdc1cb7a13d9747a56df0cc706a2797f0d8b6820e30cbb9737d3466a6aa9f813_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:fdc1cb7a13d9747a56df0cc706a2797f0d8b6820e30cbb9737d3466a6aa9f813_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:fdc1cb7a13d9747a56df0cc706a2797f0d8b6820e30cbb9737d3466a6aa9f813_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Afdc1cb7a13d9747a56df0cc706a2797f0d8b6820e30cbb9737d3466a6aa9f813?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1780987418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:e1682313c9cbd1f0760f99af61a39415395b073704d92bba97de50c136c6a9d4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:e1682313c9cbd1f0760f99af61a39415395b073704d92bba97de50c136c6a9d4_amd64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:e1682313c9cbd1f0760f99af61a39415395b073704d92bba97de50c136c6a9d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3Ae1682313c9cbd1f0760f99af61a39415395b073704d92bba97de50c136c6a9d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1780988595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ff31a74541ab7094f3fb99e1a1a27d232493ac192c11bd5695af3cd5ae68a315_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ff31a74541ab7094f3fb99e1a1a27d232493ac192c11bd5695af3cd5ae68a315_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ff31a74541ab7094f3fb99e1a1a27d232493ac192c11bd5695af3cd5ae68a315_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3Aff31a74541ab7094f3fb99e1a1a27d232493ac192c11bd5695af3cd5ae68a315?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1780979786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:792324d24c7d7cf0f9d5c912d32eba303e35f6dab71df1266c613f511a337f6d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:792324d24c7d7cf0f9d5c912d32eba303e35f6dab71df1266c613f511a337f6d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:792324d24c7d7cf0f9d5c912d32eba303e35f6dab71df1266c613f511a337f6d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A792324d24c7d7cf0f9d5c912d32eba303e35f6dab71df1266c613f511a337f6d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1780983422"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2be624efb98b975b6fd44b71d9632ea17125dac2c5e960f4546d3ec967aa75c8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2be624efb98b975b6fd44b71d9632ea17125dac2c5e960f4546d3ec967aa75c8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2be624efb98b975b6fd44b71d9632ea17125dac2c5e960f4546d3ec967aa75c8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A2be624efb98b975b6fd44b71d9632ea17125dac2c5e960f4546d3ec967aa75c8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1780984891"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8a824e34e179ee9d31f7f04e8316f72e72386b0a5149acb29a86eaba4bfeeac7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8a824e34e179ee9d31f7f04e8316f72e72386b0a5149acb29a86eaba4bfeeac7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8a824e34e179ee9d31f7f04e8316f72e72386b0a5149acb29a86eaba4bfeeac7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A8a824e34e179ee9d31f7f04e8316f72e72386b0a5149acb29a86eaba4bfeeac7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1780984660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8e7193f7c19de6f69e9e8bf1195ff7127f5b457c77982dc0ea82aa9654b41295_amd64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8e7193f7c19de6f69e9e8bf1195ff7127f5b457c77982dc0ea82aa9654b41295_amd64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8e7193f7c19de6f69e9e8bf1195ff7127f5b457c77982dc0ea82aa9654b41295_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A8e7193f7c19de6f69e9e8bf1195ff7127f5b457c77982dc0ea82aa9654b41295?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1781099977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:33a37556677131e9053cd0acd67884aa7b0f1c4ea9755aa50890a90f5818f92c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:33a37556677131e9053cd0acd67884aa7b0f1c4ea9755aa50890a90f5818f92c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:33a37556677131e9053cd0acd67884aa7b0f1c4ea9755aa50890a90f5818f92c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A33a37556677131e9053cd0acd67884aa7b0f1c4ea9755aa50890a90f5818f92c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1780983489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:411b9cb7c1d396effcf80e85da91e0ba5df158214c97ea6fc7b88773ef5fdda2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:411b9cb7c1d396effcf80e85da91e0ba5df158214c97ea6fc7b88773ef5fdda2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:411b9cb7c1d396effcf80e85da91e0ba5df158214c97ea6fc7b88773ef5fdda2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A411b9cb7c1d396effcf80e85da91e0ba5df158214c97ea6fc7b88773ef5fdda2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1780982165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f16776ec75d1c98068c8e15523180e3b153e60aae643c6e971c3f106dd61dcb3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f16776ec75d1c98068c8e15523180e3b153e60aae643c6e971c3f106dd61dcb3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f16776ec75d1c98068c8e15523180e3b153e60aae643c6e971c3f106dd61dcb3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3Af16776ec75d1c98068c8e15523180e3b153e60aae643c6e971c3f106dd61dcb3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1780982468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:04bc721c42c8ba150d61bb9d813105b7027ecd26c38928b471e05eb031af30ef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:04bc721c42c8ba150d61bb9d813105b7027ecd26c38928b471e05eb031af30ef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:04bc721c42c8ba150d61bb9d813105b7027ecd26c38928b471e05eb031af30ef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3A04bc721c42c8ba150d61bb9d813105b7027ecd26c38928b471e05eb031af30ef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9\u0026tag=1780988384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bde8fd80d02e817c6f166cedf305fde13f298b77bb1ef117cf6df594e9ef42ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bde8fd80d02e817c6f166cedf305fde13f298b77bb1ef117cf6df594e9ef42ba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bde8fd80d02e817c6f166cedf305fde13f298b77bb1ef117cf6df594e9ef42ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3Abde8fd80d02e817c6f166cedf305fde13f298b77bb1ef117cf6df594e9ef42ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router-rhel9\u0026tag=1780988211"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ca546246196b2ade2da766b82892c3646ee31b7b318227e12fff55587e7cf798_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ca546246196b2ade2da766b82892c3646ee31b7b318227e12fff55587e7cf798_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ca546246196b2ade2da766b82892c3646ee31b7b318227e12fff55587e7cf798_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3Aca546246196b2ade2da766b82892c3646ee31b7b318227e12fff55587e7cf798?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1780987965"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:920f7e62a7a32df527e8f68eda40d4c65ba960c194ea31a9398dcbf5325e1daa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:920f7e62a7a32df527e8f68eda40d4c65ba960c194ea31a9398dcbf5325e1daa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:920f7e62a7a32df527e8f68eda40d4c65ba960c194ea31a9398dcbf5325e1daa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3A920f7e62a7a32df527e8f68eda40d4c65ba960c194ea31a9398dcbf5325e1daa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel9\u0026tag=1781087024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a92d30f060e85a77974b727ad8b45d11db6bc1724cc4c8fcebbbea0c01b4ea59_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a92d30f060e85a77974b727ad8b45d11db6bc1724cc4c8fcebbbea0c01b4ea59_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a92d30f060e85a77974b727ad8b45d11db6bc1724cc4c8fcebbbea0c01b4ea59_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Aa92d30f060e85a77974b727ad8b45d11db6bc1724cc4c8fcebbbea0c01b4ea59?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1780982735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:4a8fa6462de7c7ff3216ce4025473254651e3f8a11b973a23b67815d1b73d142_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:4a8fa6462de7c7ff3216ce4025473254651e3f8a11b973a23b67815d1b73d142_amd64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:4a8fa6462de7c7ff3216ce4025473254651e3f8a11b973a23b67815d1b73d142_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A4a8fa6462de7c7ff3216ce4025473254651e3f8a11b973a23b67815d1b73d142?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1781098965"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:84d96f10dabfd6d3e58cd64b2df81b4e529d64309a8a2c68ca0d7783409c9082_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:84d96f10dabfd6d3e58cd64b2df81b4e529d64309a8a2c68ca0d7783409c9082_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:84d96f10dabfd6d3e58cd64b2df81b4e529d64309a8a2c68ca0d7783409c9082_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3A84d96f10dabfd6d3e58cd64b2df81b4e529d64309a8a2c68ca0d7783409c9082?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9\u0026tag=1780980462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:4713871ce0ddc73dbbfe1d579c3d94d9075fa52c634b51f5d972ae9731994549_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:4713871ce0ddc73dbbfe1d579c3d94d9075fa52c634b51f5d972ae9731994549_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:4713871ce0ddc73dbbfe1d579c3d94d9075fa52c634b51f5d972ae9731994549_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3A4713871ce0ddc73dbbfe1d579c3d94d9075fa52c634b51f5d972ae9731994549?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator\u0026tag=1781086944"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:6a3c5941880c61d07e56f271355d31653096121c8afb5f1af7fc45d1c2cb35ac_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:6a3c5941880c61d07e56f271355d31653096121c8afb5f1af7fc45d1c2cb35ac_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:6a3c5941880c61d07e56f271355d31653096121c8afb5f1af7fc45d1c2cb35ac_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A6a3c5941880c61d07e56f271355d31653096121c8afb5f1af7fc45d1c2cb35ac?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9\u0026tag=1780988189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:0d3bad3a2fdf0065c684f5230d70dcc8e409e8eac77c05ae3c96a2f0ef7691af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:0d3bad3a2fdf0065c684f5230d70dcc8e409e8eac77c05ae3c96a2f0ef7691af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:0d3bad3a2fdf0065c684f5230d70dcc8e409e8eac77c05ae3c96a2f0ef7691af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A0d3bad3a2fdf0065c684f5230d70dcc8e409e8eac77c05ae3c96a2f0ef7691af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1780980574"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:937773e52fa27dc0955ca18864cdd92999f2c306844ac7370855bf0f733936bf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:937773e52fa27dc0955ca18864cdd92999f2c306844ac7370855bf0f733936bf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:937773e52fa27dc0955ca18864cdd92999f2c306844ac7370855bf0f733936bf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A937773e52fa27dc0955ca18864cdd92999f2c306844ac7370855bf0f733936bf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1780979758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d8e7283b76c170d28eaba53e376eeb606663cd514a2efb1097e435a2c6618bda_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d8e7283b76c170d28eaba53e376eeb606663cd514a2efb1097e435a2c6618bda_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d8e7283b76c170d28eaba53e376eeb606663cd514a2efb1097e435a2c6618bda_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Ad8e7283b76c170d28eaba53e376eeb606663cd514a2efb1097e435a2c6618bda?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1780977730"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a7c7353f650032dca77642c03e019f51d03e0e53833cae3e4a8716e6aa5e3137_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a7c7353f650032dca77642c03e019f51d03e0e53833cae3e4a8716e6aa5e3137_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a7c7353f650032dca77642c03e019f51d03e0e53833cae3e4a8716e6aa5e3137_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Aa7c7353f650032dca77642c03e019f51d03e0e53833cae3e4a8716e6aa5e3137?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1780986391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2af3e438f911d3aa3d82692d18411b8fc56022bb7cf4baabb47545999001585b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2af3e438f911d3aa3d82692d18411b8fc56022bb7cf4baabb47545999001585b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2af3e438f911d3aa3d82692d18411b8fc56022bb7cf4baabb47545999001585b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A2af3e438f911d3aa3d82692d18411b8fc56022bb7cf4baabb47545999001585b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1780979769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bddae57668d8dcb474d2a6a95e3e9351f8eae4a3333f4c886f8c53b34c956788_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bddae57668d8dcb474d2a6a95e3e9351f8eae4a3333f4c886f8c53b34c956788_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bddae57668d8dcb474d2a6a95e3e9351f8eae4a3333f4c886f8c53b34c956788_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3Abddae57668d8dcb474d2a6a95e3e9351f8eae4a3333f4c886f8c53b34c956788?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1780983398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:64ef93e2a8693f00a5583436646d8521c681541e6272d014aad859d667883f8e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:64ef93e2a8693f00a5583436646d8521c681541e6272d014aad859d667883f8e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:64ef93e2a8693f00a5583436646d8521c681541e6272d014aad859d667883f8e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A64ef93e2a8693f00a5583436646d8521c681541e6272d014aad859d667883f8e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1780984871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3b39a5c369ed72849f770b035799fc99b2483cc05ca138e34f244d68a133af8f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3b39a5c369ed72849f770b035799fc99b2483cc05ca138e34f244d68a133af8f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3b39a5c369ed72849f770b035799fc99b2483cc05ca138e34f244d68a133af8f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A3b39a5c369ed72849f770b035799fc99b2483cc05ca138e34f244d68a133af8f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1780981207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:23705a6102622d9363b5a39fb5c6bf31c3211936068d07903ecf116e814a0fc0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:23705a6102622d9363b5a39fb5c6bf31c3211936068d07903ecf116e814a0fc0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:23705a6102622d9363b5a39fb5c6bf31c3211936068d07903ecf116e814a0fc0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A23705a6102622d9363b5a39fb5c6bf31c3211936068d07903ecf116e814a0fc0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1780984039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Af365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1780980450"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Af365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9\u0026tag=1780980450"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3Abb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1780980466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64",
"product_id": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3Abb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/rdma-cni-rhel9\u0026tag=1780980466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:15321111d08773607e32a82db18fd96c96968ccb56060a2d94923944a8041d65_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:15321111d08773607e32a82db18fd96c96968ccb56060a2d94923944a8041d65_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:15321111d08773607e32a82db18fd96c96968ccb56060a2d94923944a8041d65_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A15321111d08773607e32a82db18fd96c96968ccb56060a2d94923944a8041d65?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1780980031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1b1d1055f7c2fe909ad50f00380eaeadb750ad2c92fb6883700941703dde754e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1b1d1055f7c2fe909ad50f00380eaeadb750ad2c92fb6883700941703dde754e_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1b1d1055f7c2fe909ad50f00380eaeadb750ad2c92fb6883700941703dde754e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A1b1d1055f7c2fe909ad50f00380eaeadb750ad2c92fb6883700941703dde754e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1780986468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0d321b8b7557ac625caf6ad70ca1e67a1aaf7e32bcdf9ec3f11c13e19b87cfab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0d321b8b7557ac625caf6ad70ca1e67a1aaf7e32bcdf9ec3f11c13e19b87cfab_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0d321b8b7557ac625caf6ad70ca1e67a1aaf7e32bcdf9ec3f11c13e19b87cfab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A0d321b8b7557ac625caf6ad70ca1e67a1aaf7e32bcdf9ec3f11c13e19b87cfab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1780980916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1b896572b17d855424baf18a1bb9e58c319f5498185baeaa040d979821e5bb79_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1b896572b17d855424baf18a1bb9e58c319f5498185baeaa040d979821e5bb79_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1b896572b17d855424baf18a1bb9e58c319f5498185baeaa040d979821e5bb79_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A1b896572b17d855424baf18a1bb9e58c319f5498185baeaa040d979821e5bb79?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1780984901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8fb377b359ff0abe7ab81ef61c2d39fefd7945027b0ef0ce79bc6730a3e37928_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8fb377b359ff0abe7ab81ef61c2d39fefd7945027b0ef0ce79bc6730a3e37928_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8fb377b359ff0abe7ab81ef61c2d39fefd7945027b0ef0ce79bc6730a3e37928_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A8fb377b359ff0abe7ab81ef61c2d39fefd7945027b0ef0ce79bc6730a3e37928?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1780979674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb8e6e6e5037265b1c27e2f3ae8cc2ba61cfe7e0ba4a3f658649b14eb3442226_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb8e6e6e5037265b1c27e2f3ae8cc2ba61cfe7e0ba4a3f658649b14eb3442226_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb8e6e6e5037265b1c27e2f3ae8cc2ba61cfe7e0ba4a3f658649b14eb3442226_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3Aeb8e6e6e5037265b1c27e2f3ae8cc2ba61cfe7e0ba4a3f658649b14eb3442226?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1780980432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:a9bce8dfa4a4cccec18a71c4e1ec59162728841e5e5ba364b84f3b06a0c53ee5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:a9bce8dfa4a4cccec18a71c4e1ec59162728841e5e5ba364b84f3b06a0c53ee5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:a9bce8dfa4a4cccec18a71c4e1ec59162728841e5e5ba364b84f3b06a0c53ee5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3Aa9bce8dfa4a4cccec18a71c4e1ec59162728841e5e5ba364b84f3b06a0c53ee5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1780980480"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:199e7cdad3067cd48ec455730a76b9e2c3b3e17a247189f09492a81ea6fce29a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:199e7cdad3067cd48ec455730a76b9e2c3b3e17a247189f09492a81ea6fce29a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:199e7cdad3067cd48ec455730a76b9e2c3b3e17a247189f09492a81ea6fce29a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A199e7cdad3067cd48ec455730a76b9e2c3b3e17a247189f09492a81ea6fce29a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1780979760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:dfbb4e179c3cc1cdd5cb261debb181ee89e30aadf4220b2a1806c8712b5029ca_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:dfbb4e179c3cc1cdd5cb261debb181ee89e30aadf4220b2a1806c8712b5029ca_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:dfbb4e179c3cc1cdd5cb261debb181ee89e30aadf4220b2a1806c8712b5029ca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3Adfbb4e179c3cc1cdd5cb261debb181ee89e30aadf4220b2a1806c8712b5029ca?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1780981217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7657a1e6b3f7557e3b77bfd42a1861805bbf028627964e3994f7b4d2d8fa4510_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7657a1e6b3f7557e3b77bfd42a1861805bbf028627964e3994f7b4d2d8fa4510_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7657a1e6b3f7557e3b77bfd42a1861805bbf028627964e3994f7b4d2d8fa4510_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A7657a1e6b3f7557e3b77bfd42a1861805bbf028627964e3994f7b4d2d8fa4510?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1780980234"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a0408eaec2a94d7294108fb5945c5170b9243dbf87c7a7e84ac8176935a840fa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a0408eaec2a94d7294108fb5945c5170b9243dbf87c7a7e84ac8176935a840fa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a0408eaec2a94d7294108fb5945c5170b9243dbf87c7a7e84ac8176935a840fa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3Aa0408eaec2a94d7294108fb5945c5170b9243dbf87c7a7e84ac8176935a840fa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1780983645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:60bff9d3005602f993c6a48466baf5e11264e81d2d1f9ebe1afabfa78f9ff15f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:60bff9d3005602f993c6a48466baf5e11264e81d2d1f9ebe1afabfa78f9ff15f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:60bff9d3005602f993c6a48466baf5e11264e81d2d1f9ebe1afabfa78f9ff15f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A60bff9d3005602f993c6a48466baf5e11264e81d2d1f9ebe1afabfa78f9ff15f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1780988145"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:e472908acaa3abff6ae83312687ee22a6302d1385ae4f56700aa96b50cdde34b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:e472908acaa3abff6ae83312687ee22a6302d1385ae4f56700aa96b50cdde34b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:e472908acaa3abff6ae83312687ee22a6302d1385ae4f56700aa96b50cdde34b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Ae472908acaa3abff6ae83312687ee22a6302d1385ae4f56700aa96b50cdde34b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1780985218"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:4f1a52ec8422a2103eceff5faf897ea1de2a945e85cc5bc6c92db45d6e11ece7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:4f1a52ec8422a2103eceff5faf897ea1de2a945e85cc5bc6c92db45d6e11ece7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:4f1a52ec8422a2103eceff5faf897ea1de2a945e85cc5bc6c92db45d6e11ece7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A4f1a52ec8422a2103eceff5faf897ea1de2a945e85cc5bc6c92db45d6e11ece7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1780980355"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a1a143d95357905e27c585da7330170cb37abdd2df796d9ee40254df33124938_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a1a143d95357905e27c585da7330170cb37abdd2df796d9ee40254df33124938_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a1a143d95357905e27c585da7330170cb37abdd2df796d9ee40254df33124938_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3Aa1a143d95357905e27c585da7330170cb37abdd2df796d9ee40254df33124938?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1780988052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d7a2eeb4b4a3fcc4a228714db8a6fe9118bbe916b3179be4042b13fab587621b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d7a2eeb4b4a3fcc4a228714db8a6fe9118bbe916b3179be4042b13fab587621b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d7a2eeb4b4a3fcc4a228714db8a6fe9118bbe916b3179be4042b13fab587621b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3Ad7a2eeb4b4a3fcc4a228714db8a6fe9118bbe916b3179be4042b13fab587621b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1780980375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5d387d45ed0b6fd342086f33f1ccf62baa32242672fe1bb2e3d9edf1cd5d5357_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5d387d45ed0b6fd342086f33f1ccf62baa32242672fe1bb2e3d9edf1cd5d5357_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5d387d45ed0b6fd342086f33f1ccf62baa32242672fe1bb2e3d9edf1cd5d5357_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A5d387d45ed0b6fd342086f33f1ccf62baa32242672fe1bb2e3d9edf1cd5d5357?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780980901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:04bbb72da799d3d6121078bbd86fcbbf04141aae2be700dba76edbabc3898cb4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:04bbb72da799d3d6121078bbd86fcbbf04141aae2be700dba76edbabc3898cb4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:04bbb72da799d3d6121078bbd86fcbbf04141aae2be700dba76edbabc3898cb4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A04bbb72da799d3d6121078bbd86fcbbf04141aae2be700dba76edbabc3898cb4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780980260"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:302d8765190f09765b6337353913bba111f3141b51b2cd6568ffa92ff4cd3e6c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:302d8765190f09765b6337353913bba111f3141b51b2cd6568ffa92ff4cd3e6c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:302d8765190f09765b6337353913bba111f3141b51b2cd6568ffa92ff4cd3e6c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A302d8765190f09765b6337353913bba111f3141b51b2cd6568ffa92ff4cd3e6c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780981193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:58be962c119c805a6a97b6aaa9c841eeeb02c9ea4d820ec6e5cb1ab925948289_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:58be962c119c805a6a97b6aaa9c841eeeb02c9ea4d820ec6e5cb1ab925948289_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:58be962c119c805a6a97b6aaa9c841eeeb02c9ea4d820ec6e5cb1ab925948289_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A58be962c119c805a6a97b6aaa9c841eeeb02c9ea4d820ec6e5cb1ab925948289?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1780982500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:58e2a31b5b39a13cc91ef51600be97d3609f252a7f6a22bb55649445b8850777_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:58e2a31b5b39a13cc91ef51600be97d3609f252a7f6a22bb55649445b8850777_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:58e2a31b5b39a13cc91ef51600be97d3609f252a7f6a22bb55649445b8850777_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A58e2a31b5b39a13cc91ef51600be97d3609f252a7f6a22bb55649445b8850777?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1780979897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:950c0af402e304851f7c911c49f85a186d37319d467ec94eb30264417a11ca53_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:950c0af402e304851f7c911c49f85a186d37319d467ec94eb30264417a11ca53_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:950c0af402e304851f7c911c49f85a186d37319d467ec94eb30264417a11ca53_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A950c0af402e304851f7c911c49f85a186d37319d467ec94eb30264417a11ca53?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1780980179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:4d09bf9ae1384a717881bd8e9791d30462af842df9e4df1cf39c5a9e3f0aed98_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:4d09bf9ae1384a717881bd8e9791d30462af842df9e4df1cf39c5a9e3f0aed98_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:4d09bf9ae1384a717881bd8e9791d30462af842df9e4df1cf39c5a9e3f0aed98_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A4d09bf9ae1384a717881bd8e9791d30462af842df9e4df1cf39c5a9e3f0aed98?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1780987418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:49a7862803a48ea4919216a718153cda0d3e2cceb1e7b3191310067486aba6ae_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:49a7862803a48ea4919216a718153cda0d3e2cceb1e7b3191310067486aba6ae_s390x",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:49a7862803a48ea4919216a718153cda0d3e2cceb1e7b3191310067486aba6ae_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A49a7862803a48ea4919216a718153cda0d3e2cceb1e7b3191310067486aba6ae?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1780988595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bd9845e0cf30d148957a7d8cfd5747f0e31a3153d226a54e18cd57f07ae2be6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bd9845e0cf30d148957a7d8cfd5747f0e31a3153d226a54e18cd57f07ae2be6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bd9845e0cf30d148957a7d8cfd5747f0e31a3153d226a54e18cd57f07ae2be6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A1bd9845e0cf30d148957a7d8cfd5747f0e31a3153d226a54e18cd57f07ae2be6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1780983422"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d47923944af7bc86e8941e3145f8999292ae0d10c12fd47b8642b19b8140dff6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d47923944af7bc86e8941e3145f8999292ae0d10c12fd47b8642b19b8140dff6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d47923944af7bc86e8941e3145f8999292ae0d10c12fd47b8642b19b8140dff6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Ad47923944af7bc86e8941e3145f8999292ae0d10c12fd47b8642b19b8140dff6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1780984891"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4fd75386dace3f85123b9724904dc8699839fec011ba104f932a1c071511b0f2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4fd75386dace3f85123b9724904dc8699839fec011ba104f932a1c071511b0f2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4fd75386dace3f85123b9724904dc8699839fec011ba104f932a1c071511b0f2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A4fd75386dace3f85123b9724904dc8699839fec011ba104f932a1c071511b0f2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1780984660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c88d4210daf86e56f8fe6a9e923664148e2a16a2eb3d9dbc03889c475f2ab12b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c88d4210daf86e56f8fe6a9e923664148e2a16a2eb3d9dbc03889c475f2ab12b_s390x",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c88d4210daf86e56f8fe6a9e923664148e2a16a2eb3d9dbc03889c475f2ab12b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Ac88d4210daf86e56f8fe6a9e923664148e2a16a2eb3d9dbc03889c475f2ab12b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1781099977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ee976bb4134fb80bcb17727ab547c29804427b8f9c1befcd70afe303c9c3c9df_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ee976bb4134fb80bcb17727ab547c29804427b8f9c1befcd70afe303c9c3c9df_s390x",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ee976bb4134fb80bcb17727ab547c29804427b8f9c1befcd70afe303c9c3c9df_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Aee976bb4134fb80bcb17727ab547c29804427b8f9c1befcd70afe303c9c3c9df?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1780983489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:03bae849f44c05a66cc12a3e7ec69cf462de8229a81790d0bbed26bf58fb7818_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:03bae849f44c05a66cc12a3e7ec69cf462de8229a81790d0bbed26bf58fb7818_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:03bae849f44c05a66cc12a3e7ec69cf462de8229a81790d0bbed26bf58fb7818_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A03bae849f44c05a66cc12a3e7ec69cf462de8229a81790d0bbed26bf58fb7818?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1780982165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:9c623fd87f8beb75e2998a9f1aa6a1f4add460a2aeb9200206e3e7e481719612_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:9c623fd87f8beb75e2998a9f1aa6a1f4add460a2aeb9200206e3e7e481719612_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:9c623fd87f8beb75e2998a9f1aa6a1f4add460a2aeb9200206e3e7e481719612_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A9c623fd87f8beb75e2998a9f1aa6a1f4add460a2aeb9200206e3e7e481719612?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1780982468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:58facbe238eddd92b53099c9cc8c7419d1550d32e57759291c4cbca666c91d1f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:58facbe238eddd92b53099c9cc8c7419d1550d32e57759291c4cbca666c91d1f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:58facbe238eddd92b53099c9cc8c7419d1550d32e57759291c4cbca666c91d1f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3A58facbe238eddd92b53099c9cc8c7419d1550d32e57759291c4cbca666c91d1f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9\u0026tag=1780988384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3ecbd7aaa1c507fd2297c7c75b79ad6d090c4c6f618195ffa69b03936a483a73_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3ecbd7aaa1c507fd2297c7c75b79ad6d090c4c6f618195ffa69b03936a483a73_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3ecbd7aaa1c507fd2297c7c75b79ad6d090c4c6f618195ffa69b03936a483a73_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A3ecbd7aaa1c507fd2297c7c75b79ad6d090c4c6f618195ffa69b03936a483a73?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router-rhel9\u0026tag=1780988211"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:123945773bb359a072ced643524a5c2a7b3bdcf01f3dcd32c93e0871bdd1d069_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:123945773bb359a072ced643524a5c2a7b3bdcf01f3dcd32c93e0871bdd1d069_s390x",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:123945773bb359a072ced643524a5c2a7b3bdcf01f3dcd32c93e0871bdd1d069_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A123945773bb359a072ced643524a5c2a7b3bdcf01f3dcd32c93e0871bdd1d069?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1780987965"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:df25d8f43c3c350e69df77cfc30a3bd7305ed33640cf75c902bc6042d78119b6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:df25d8f43c3c350e69df77cfc30a3bd7305ed33640cf75c902bc6042d78119b6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:df25d8f43c3c350e69df77cfc30a3bd7305ed33640cf75c902bc6042d78119b6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3Adf25d8f43c3c350e69df77cfc30a3bd7305ed33640cf75c902bc6042d78119b6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel9\u0026tag=1781087024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:dbbd928683fdd68347e0a60bcebde2977290228a85dce4dd9c6e61ad3013185b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:dbbd928683fdd68347e0a60bcebde2977290228a85dce4dd9c6e61ad3013185b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:dbbd928683fdd68347e0a60bcebde2977290228a85dce4dd9c6e61ad3013185b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Adbbd928683fdd68347e0a60bcebde2977290228a85dce4dd9c6e61ad3013185b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1780982735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0001b49903cb0368b48a237271287e2b5579a7beb8c61efbae1f362699d8faf3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0001b49903cb0368b48a237271287e2b5579a7beb8c61efbae1f362699d8faf3_s390x",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0001b49903cb0368b48a237271287e2b5579a7beb8c61efbae1f362699d8faf3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A0001b49903cb0368b48a237271287e2b5579a7beb8c61efbae1f362699d8faf3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1781098965"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:88134f2123140f16553a9bdde1fcc4acad2d048308e8102871ed73d169f878c5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:88134f2123140f16553a9bdde1fcc4acad2d048308e8102871ed73d169f878c5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:88134f2123140f16553a9bdde1fcc4acad2d048308e8102871ed73d169f878c5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A88134f2123140f16553a9bdde1fcc4acad2d048308e8102871ed73d169f878c5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9\u0026tag=1780988189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:99045a0ec0103824cd7b15967ea1a24cbfa22895b8da40fe90cb7eb0b7c64db1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:99045a0ec0103824cd7b15967ea1a24cbfa22895b8da40fe90cb7eb0b7c64db1_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:99045a0ec0103824cd7b15967ea1a24cbfa22895b8da40fe90cb7eb0b7c64db1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A99045a0ec0103824cd7b15967ea1a24cbfa22895b8da40fe90cb7eb0b7c64db1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1780977730"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5d92f3826eeea5fb284d232c0cb31510e46f2fce54db2b2619306e82d204cb16_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5d92f3826eeea5fb284d232c0cb31510e46f2fce54db2b2619306e82d204cb16_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5d92f3826eeea5fb284d232c0cb31510e46f2fce54db2b2619306e82d204cb16_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A5d92f3826eeea5fb284d232c0cb31510e46f2fce54db2b2619306e82d204cb16?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1780986391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:247705d66acef25f3b926e3022ec5d34ffd1bbaada1fffc67731c3616be5102b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:247705d66acef25f3b926e3022ec5d34ffd1bbaada1fffc67731c3616be5102b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:247705d66acef25f3b926e3022ec5d34ffd1bbaada1fffc67731c3616be5102b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A247705d66acef25f3b926e3022ec5d34ffd1bbaada1fffc67731c3616be5102b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1780979769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:31007a47283330c6c3bb6e8763e787089e0b9baf35126f93b3933b1d0b5920cb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:31007a47283330c6c3bb6e8763e787089e0b9baf35126f93b3933b1d0b5920cb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:31007a47283330c6c3bb6e8763e787089e0b9baf35126f93b3933b1d0b5920cb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A31007a47283330c6c3bb6e8763e787089e0b9baf35126f93b3933b1d0b5920cb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1780983398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e302e87bdb3a62e35e444b877890297fdfc72aab54c898702ca4f327368b94bb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e302e87bdb3a62e35e444b877890297fdfc72aab54c898702ca4f327368b94bb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e302e87bdb3a62e35e444b877890297fdfc72aab54c898702ca4f327368b94bb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3Ae302e87bdb3a62e35e444b877890297fdfc72aab54c898702ca4f327368b94bb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1780984871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:96e7ed5d6bb1591579a91f61a1c317c48aa777f3d443279247a3171cd6b8a3be_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:96e7ed5d6bb1591579a91f61a1c317c48aa777f3d443279247a3171cd6b8a3be_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:96e7ed5d6bb1591579a91f61a1c317c48aa777f3d443279247a3171cd6b8a3be_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A96e7ed5d6bb1591579a91f61a1c317c48aa777f3d443279247a3171cd6b8a3be?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1780981207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d36cac43e30c5430ae4eb07ffd952069adb108e1f5d4b51471b3cd166a351de3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d36cac43e30c5430ae4eb07ffd952069adb108e1f5d4b51471b3cd166a351de3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d36cac43e30c5430ae4eb07ffd952069adb108e1f5d4b51471b3cd166a351de3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3Ad36cac43e30c5430ae4eb07ffd952069adb108e1f5d4b51471b3cd166a351de3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1780984039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:226684f964088b16f45eeb88c1c72b45b97fed5472450750842d5a94ae182123_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:226684f964088b16f45eeb88c1c72b45b97fed5472450750842d5a94ae182123_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:226684f964088b16f45eeb88c1c72b45b97fed5472450750842d5a94ae182123_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A226684f964088b16f45eeb88c1c72b45b97fed5472450750842d5a94ae182123?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1780980031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:0b7f2a45c238f778a0af8ce70b672d2f07f945138eff24d9d8dab2f4cda42395_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:0b7f2a45c238f778a0af8ce70b672d2f07f945138eff24d9d8dab2f4cda42395_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:0b7f2a45c238f778a0af8ce70b672d2f07f945138eff24d9d8dab2f4cda42395_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A0b7f2a45c238f778a0af8ce70b672d2f07f945138eff24d9d8dab2f4cda42395?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1780986468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5bd498ccf10bbf6231544850e5579c4efaa6dddc05d073b6c64626cc5c86ef73_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5bd498ccf10bbf6231544850e5579c4efaa6dddc05d073b6c64626cc5c86ef73_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5bd498ccf10bbf6231544850e5579c4efaa6dddc05d073b6c64626cc5c86ef73_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A5bd498ccf10bbf6231544850e5579c4efaa6dddc05d073b6c64626cc5c86ef73?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1780983645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:608475d6a1981fc35e1044c1290f824d1f12c48d59a5297f08c0f0eac4e1c8fb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:608475d6a1981fc35e1044c1290f824d1f12c48d59a5297f08c0f0eac4e1c8fb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:608475d6a1981fc35e1044c1290f824d1f12c48d59a5297f08c0f0eac4e1c8fb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A608475d6a1981fc35e1044c1290f824d1f12c48d59a5297f08c0f0eac4e1c8fb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1780988145"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:4d09bf9ae1384a717881bd8e9791d30462af842df9e4df1cf39c5a9e3f0aed98_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:4d09bf9ae1384a717881bd8e9791d30462af842df9e4df1cf39c5a9e3f0aed98_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:4d09bf9ae1384a717881bd8e9791d30462af842df9e4df1cf39c5a9e3f0aed98_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ca042c7fcc0d046b98c239c109399f9bb786072075bffabcf391604f206d5671_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ca042c7fcc0d046b98c239c109399f9bb786072075bffabcf391604f206d5671_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ca042c7fcc0d046b98c239c109399f9bb786072075bffabcf391604f206d5671_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d8be6865a69585184a74d7b9d7e3c4295e9487d172f77688a084114b2330c21a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d8be6865a69585184a74d7b9d7e3c4295e9487d172f77688a084114b2330c21a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d8be6865a69585184a74d7b9d7e3c4295e9487d172f77688a084114b2330c21a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:fdc1cb7a13d9747a56df0cc706a2797f0d8b6820e30cbb9737d3466a6aa9f813_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:fdc1cb7a13d9747a56df0cc706a2797f0d8b6820e30cbb9737d3466a6aa9f813_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:fdc1cb7a13d9747a56df0cc706a2797f0d8b6820e30cbb9737d3466a6aa9f813_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:58c01f288f26e46a5db54b1720e908cd66874692f1481d3795761faddcade35b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:58c01f288f26e46a5db54b1720e908cd66874692f1481d3795761faddcade35b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:58c01f288f26e46a5db54b1720e908cd66874692f1481d3795761faddcade35b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:950c0af402e304851f7c911c49f85a186d37319d467ec94eb30264417a11ca53_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:950c0af402e304851f7c911c49f85a186d37319d467ec94eb30264417a11ca53_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:950c0af402e304851f7c911c49f85a186d37319d467ec94eb30264417a11ca53_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:be1de44d356b34123bd72ac93501b1e3399bc0d7f454ab41dbf9ee1e891c5b6a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:be1de44d356b34123bd72ac93501b1e3399bc0d7f454ab41dbf9ee1e891c5b6a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:be1de44d356b34123bd72ac93501b1e3399bc0d7f454ab41dbf9ee1e891c5b6a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f01a16d58d5fd5a7366353330c82c4c1625bdeab98b04ac980c92dd3791cda2e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f01a16d58d5fd5a7366353330c82c4c1625bdeab98b04ac980c92dd3791cda2e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f01a16d58d5fd5a7366353330c82c4c1625bdeab98b04ac980c92dd3791cda2e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:136e9192928dee3b2a2b650e2998257b604d2017d3d86534182c60a5c26ba725_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:136e9192928dee3b2a2b650e2998257b604d2017d3d86534182c60a5c26ba725_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:136e9192928dee3b2a2b650e2998257b604d2017d3d86534182c60a5c26ba725_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:49a7862803a48ea4919216a718153cda0d3e2cceb1e7b3191310067486aba6ae_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:49a7862803a48ea4919216a718153cda0d3e2cceb1e7b3191310067486aba6ae_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:49a7862803a48ea4919216a718153cda0d3e2cceb1e7b3191310067486aba6ae_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:6a9debd24c7c1f9fca5f0484d72737cb2c9c4f11800c3333fb5cb719e9fb68ca_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:6a9debd24c7c1f9fca5f0484d72737cb2c9c4f11800c3333fb5cb719e9fb68ca_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:6a9debd24c7c1f9fca5f0484d72737cb2c9c4f11800c3333fb5cb719e9fb68ca_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:e1682313c9cbd1f0760f99af61a39415395b073704d92bba97de50c136c6a9d4_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:e1682313c9cbd1f0760f99af61a39415395b073704d92bba97de50c136c6a9d4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:e1682313c9cbd1f0760f99af61a39415395b073704d92bba97de50c136c6a9d4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0001b49903cb0368b48a237271287e2b5579a7beb8c61efbae1f362699d8faf3_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0001b49903cb0368b48a237271287e2b5579a7beb8c61efbae1f362699d8faf3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0001b49903cb0368b48a237271287e2b5579a7beb8c61efbae1f362699d8faf3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:36282ae55143491dd562a82d206bc2e9ea8d4f5efefe3197451f1c539ad7f7f5_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:36282ae55143491dd562a82d206bc2e9ea8d4f5efefe3197451f1c539ad7f7f5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:36282ae55143491dd562a82d206bc2e9ea8d4f5efefe3197451f1c539ad7f7f5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:4a8fa6462de7c7ff3216ce4025473254651e3f8a11b973a23b67815d1b73d142_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:4a8fa6462de7c7ff3216ce4025473254651e3f8a11b973a23b67815d1b73d142_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:4a8fa6462de7c7ff3216ce4025473254651e3f8a11b973a23b67815d1b73d142_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d8fa72da4fc47e2db6b63a7a68edf8d552e5109f72560aadd414af976d23eca0_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d8fa72da4fc47e2db6b63a7a68edf8d552e5109f72560aadd414af976d23eca0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d8fa72da4fc47e2db6b63a7a68edf8d552e5109f72560aadd414af976d23eca0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5d92f3826eeea5fb284d232c0cb31510e46f2fce54db2b2619306e82d204cb16_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5d92f3826eeea5fb284d232c0cb31510e46f2fce54db2b2619306e82d204cb16_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5d92f3826eeea5fb284d232c0cb31510e46f2fce54db2b2619306e82d204cb16_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:631ef47a1169586cb737bfda8aef9597baeb44a938e7ddcab8e310c26a8678df_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:631ef47a1169586cb737bfda8aef9597baeb44a938e7ddcab8e310c26a8678df_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:631ef47a1169586cb737bfda8aef9597baeb44a938e7ddcab8e310c26a8678df_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a7c7353f650032dca77642c03e019f51d03e0e53833cae3e4a8716e6aa5e3137_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a7c7353f650032dca77642c03e019f51d03e0e53833cae3e4a8716e6aa5e3137_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a7c7353f650032dca77642c03e019f51d03e0e53833cae3e4a8716e6aa5e3137_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f410d487f10ece94e49ad03aa9aa54b6584828b6635c5cd66278a069ed9a3f36_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f410d487f10ece94e49ad03aa9aa54b6584828b6635c5cd66278a069ed9a3f36_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f410d487f10ece94e49ad03aa9aa54b6584828b6635c5cd66278a069ed9a3f36_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:66247c4f0f00a63379797545da76f072b9d04d905c3490c1e6b06d2a47432586_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:66247c4f0f00a63379797545da76f072b9d04d905c3490c1e6b06d2a47432586_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:66247c4f0f00a63379797545da76f072b9d04d905c3490c1e6b06d2a47432586_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:99045a0ec0103824cd7b15967ea1a24cbfa22895b8da40fe90cb7eb0b7c64db1_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:99045a0ec0103824cd7b15967ea1a24cbfa22895b8da40fe90cb7eb0b7c64db1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:99045a0ec0103824cd7b15967ea1a24cbfa22895b8da40fe90cb7eb0b7c64db1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:c7c19ecdea825d8402fce7ee3f07f825a1209b1f0abb7d8b885bad4fa8e824c0_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:c7c19ecdea825d8402fce7ee3f07f825a1209b1f0abb7d8b885bad4fa8e824c0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:c7c19ecdea825d8402fce7ee3f07f825a1209b1f0abb7d8b885bad4fa8e824c0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d8e7283b76c170d28eaba53e376eeb606663cd514a2efb1097e435a2c6618bda_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:d8e7283b76c170d28eaba53e376eeb606663cd514a2efb1097e435a2c6618bda_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d8e7283b76c170d28eaba53e376eeb606663cd514a2efb1097e435a2c6618bda_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8e7193f7c19de6f69e9e8bf1195ff7127f5b457c77982dc0ea82aa9654b41295_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8e7193f7c19de6f69e9e8bf1195ff7127f5b457c77982dc0ea82aa9654b41295_amd64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8e7193f7c19de6f69e9e8bf1195ff7127f5b457c77982dc0ea82aa9654b41295_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8fb8a008770a84e5773858aaa251d2b23af127a68baf5aa102b605731eb32f9b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8fb8a008770a84e5773858aaa251d2b23af127a68baf5aa102b605731eb32f9b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8fb8a008770a84e5773858aaa251d2b23af127a68baf5aa102b605731eb32f9b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c88d4210daf86e56f8fe6a9e923664148e2a16a2eb3d9dbc03889c475f2ab12b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c88d4210daf86e56f8fe6a9e923664148e2a16a2eb3d9dbc03889c475f2ab12b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c88d4210daf86e56f8fe6a9e923664148e2a16a2eb3d9dbc03889c475f2ab12b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c93d7dc23599ae79223b1cbd7dc62b63f6e6c9985d26b06bc6f3a692b8568096_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c93d7dc23599ae79223b1cbd7dc62b63f6e6c9985d26b06bc6f3a692b8568096_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c93d7dc23599ae79223b1cbd7dc62b63f6e6c9985d26b06bc6f3a692b8568096_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:03bae849f44c05a66cc12a3e7ec69cf462de8229a81790d0bbed26bf58fb7818_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:03bae849f44c05a66cc12a3e7ec69cf462de8229a81790d0bbed26bf58fb7818_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:03bae849f44c05a66cc12a3e7ec69cf462de8229a81790d0bbed26bf58fb7818_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:369f2e68a42db6bb9a7a9fe09ce1cfbd8cd0259152aff798c6dc3187c6932342_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:369f2e68a42db6bb9a7a9fe09ce1cfbd8cd0259152aff798c6dc3187c6932342_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:369f2e68a42db6bb9a7a9fe09ce1cfbd8cd0259152aff798c6dc3187c6932342_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:411b9cb7c1d396effcf80e85da91e0ba5df158214c97ea6fc7b88773ef5fdda2_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:411b9cb7c1d396effcf80e85da91e0ba5df158214c97ea6fc7b88773ef5fdda2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:411b9cb7c1d396effcf80e85da91e0ba5df158214c97ea6fc7b88773ef5fdda2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:52df8f81e7dbe8760ccc4f802e996c078af59d30b43f8fb846924c2d8a8524b7_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:52df8f81e7dbe8760ccc4f802e996c078af59d30b43f8fb846924c2d8a8524b7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:52df8f81e7dbe8760ccc4f802e996c078af59d30b43f8fb846924c2d8a8524b7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:771b9045bebbe6d595a7b43af45cb23fec31ba8b426bb2bf2538ef3e71cd71d2_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:771b9045bebbe6d595a7b43af45cb23fec31ba8b426bb2bf2538ef3e71cd71d2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:771b9045bebbe6d595a7b43af45cb23fec31ba8b426bb2bf2538ef3e71cd71d2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:84d96f10dabfd6d3e58cd64b2df81b4e529d64309a8a2c68ca0d7783409c9082_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:84d96f10dabfd6d3e58cd64b2df81b4e529d64309a8a2c68ca0d7783409c9082_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:84d96f10dabfd6d3e58cd64b2df81b4e529d64309a8a2c68ca0d7783409c9082_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:4713871ce0ddc73dbbfe1d579c3d94d9075fa52c634b51f5d972ae9731994549_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:4713871ce0ddc73dbbfe1d579c3d94d9075fa52c634b51f5d972ae9731994549_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:4713871ce0ddc73dbbfe1d579c3d94d9075fa52c634b51f5d972ae9731994549_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:eda0961b2797331cebf194a05ac642394b34ab65dadbffa8c3affc6bfbfe2a1e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:eda0961b2797331cebf194a05ac642394b34ab65dadbffa8c3affc6bfbfe2a1e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:eda0961b2797331cebf194a05ac642394b34ab65dadbffa8c3affc6bfbfe2a1e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6b2bb2fa9cf85ff14f8ab121bb56e561ad5ad51d21e5f54395940e923d5067ad_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6b2bb2fa9cf85ff14f8ab121bb56e561ad5ad51d21e5f54395940e923d5067ad_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6b2bb2fa9cf85ff14f8ab121bb56e561ad5ad51d21e5f54395940e923d5067ad_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:80c62b74fdcc97a49b2d574bc03b30849ffcb7d616e4b2549ad0259c2b29ad9c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:80c62b74fdcc97a49b2d574bc03b30849ffcb7d616e4b2549ad0259c2b29ad9c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:80c62b74fdcc97a49b2d574bc03b30849ffcb7d616e4b2549ad0259c2b29ad9c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:bbc22eb8e3c8b1a8b6e4c4c67a7de7029a663844b4a32d97ce4cb9409c6a7243_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:bbc22eb8e3c8b1a8b6e4c4c67a7de7029a663844b4a32d97ce4cb9409c6a7243_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:bbc22eb8e3c8b1a8b6e4c4c67a7de7029a663844b4a32d97ce4cb9409c6a7243_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6011021567e1b310f6fe5f0e5416eac0829cb573e35de172121a652563d28637_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6011021567e1b310f6fe5f0e5416eac0829cb573e35de172121a652563d28637_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6011021567e1b310f6fe5f0e5416eac0829cb573e35de172121a652563d28637_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6cad7b501d971d385c8ba32a6e3f0dc3dc9cdc8ef555b0f0cc520bb90dabab5c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6cad7b501d971d385c8ba32a6e3f0dc3dc9cdc8ef555b0f0cc520bb90dabab5c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6cad7b501d971d385c8ba32a6e3f0dc3dc9cdc8ef555b0f0cc520bb90dabab5c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:9c623fd87f8beb75e2998a9f1aa6a1f4add460a2aeb9200206e3e7e481719612_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:9c623fd87f8beb75e2998a9f1aa6a1f4add460a2aeb9200206e3e7e481719612_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:9c623fd87f8beb75e2998a9f1aa6a1f4add460a2aeb9200206e3e7e481719612_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f16776ec75d1c98068c8e15523180e3b153e60aae643c6e971c3f106dd61dcb3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f16776ec75d1c98068c8e15523180e3b153e60aae643c6e971c3f106dd61dcb3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f16776ec75d1c98068c8e15523180e3b153e60aae643c6e971c3f106dd61dcb3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:256b9cdf5cd6f7e32a11f65f7534e1ca39a3fccb64d411c7e01dd6f5e600c237_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:256b9cdf5cd6f7e32a11f65f7534e1ca39a3fccb64d411c7e01dd6f5e600c237_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:256b9cdf5cd6f7e32a11f65f7534e1ca39a3fccb64d411c7e01dd6f5e600c237_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2df60a790d449041be77c83066368408cf3a62fd2cadc06fc1e3b2e3f9b074b8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2df60a790d449041be77c83066368408cf3a62fd2cadc06fc1e3b2e3f9b074b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2df60a790d449041be77c83066368408cf3a62fd2cadc06fc1e3b2e3f9b074b8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a1cc536befd8a5ff3721fefef114be3a771e5bc3e862baec096f187d3eac44c3_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a1cc536befd8a5ff3721fefef114be3a771e5bc3e862baec096f187d3eac44c3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a1cc536befd8a5ff3721fefef114be3a771e5bc3e862baec096f187d3eac44c3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:e472908acaa3abff6ae83312687ee22a6302d1385ae4f56700aa96b50cdde34b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:e472908acaa3abff6ae83312687ee22a6302d1385ae4f56700aa96b50cdde34b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:e472908acaa3abff6ae83312687ee22a6302d1385ae4f56700aa96b50cdde34b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a1a143d95357905e27c585da7330170cb37abdd2df796d9ee40254df33124938_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a1a143d95357905e27c585da7330170cb37abdd2df796d9ee40254df33124938_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a1a143d95357905e27c585da7330170cb37abdd2df796d9ee40254df33124938_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:c41824e92b4311f735409b231983ed7e69400752527c7a0b9a5d86295743dfce_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:c41824e92b4311f735409b231983ed7e69400752527c7a0b9a5d86295743dfce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:c41824e92b4311f735409b231983ed7e69400752527c7a0b9a5d86295743dfce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:e12ab95c40b730b22978b8347af251b1e45d9e0f78eac600eb512f544ee8b043_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:e12ab95c40b730b22978b8347af251b1e45d9e0f78eac600eb512f544ee8b043_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:e12ab95c40b730b22978b8347af251b1e45d9e0f78eac600eb512f544ee8b043_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f20e5378fed66eac4219322baa1c6a8afe929f63d9def922e0d904b398fa70e9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f20e5378fed66eac4219322baa1c6a8afe929f63d9def922e0d904b398fa70e9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f20e5378fed66eac4219322baa1c6a8afe929f63d9def922e0d904b398fa70e9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:318a0790da610c038878f604984d2097fd343950c7a19be380c0eb93576ce149_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:318a0790da610c038878f604984d2097fd343950c7a19be380c0eb93576ce149_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:318a0790da610c038878f604984d2097fd343950c7a19be380c0eb93576ce149_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:4f1a52ec8422a2103eceff5faf897ea1de2a945e85cc5bc6c92db45d6e11ece7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:4f1a52ec8422a2103eceff5faf897ea1de2a945e85cc5bc6c92db45d6e11ece7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:4f1a52ec8422a2103eceff5faf897ea1de2a945e85cc5bc6c92db45d6e11ece7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5a36a4b8ee0617b0fc7a53dc73e1312c0ebd9f15e1b76df50f977edb0280e684_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5a36a4b8ee0617b0fc7a53dc73e1312c0ebd9f15e1b76df50f977edb0280e684_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5a36a4b8ee0617b0fc7a53dc73e1312c0ebd9f15e1b76df50f977edb0280e684_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:7d0ee426415366ae01e279d9d37910f512101d0ca3954fada90f7ef41c463623_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:7d0ee426415366ae01e279d9d37910f512101d0ca3954fada90f7ef41c463623_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:7d0ee426415366ae01e279d9d37910f512101d0ca3954fada90f7ef41c463623_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c0a7a8aca0b9c4e91ac53aadae071314d6a767bcfb5609a4efdc669febc0ff0_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c0a7a8aca0b9c4e91ac53aadae071314d6a767bcfb5609a4efdc669febc0ff0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c0a7a8aca0b9c4e91ac53aadae071314d6a767bcfb5609a4efdc669febc0ff0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:302d8765190f09765b6337353913bba111f3141b51b2cd6568ffa92ff4cd3e6c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:302d8765190f09765b6337353913bba111f3141b51b2cd6568ffa92ff4cd3e6c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:302d8765190f09765b6337353913bba111f3141b51b2cd6568ffa92ff4cd3e6c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4c87d15448cd5a9f91cf4da7bab75a8ad7ff9c41d7a50593773790a2a033fd75_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4c87d15448cd5a9f91cf4da7bab75a8ad7ff9c41d7a50593773790a2a033fd75_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4c87d15448cd5a9f91cf4da7bab75a8ad7ff9c41d7a50593773790a2a033fd75_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:5892097dad581a64c8e719ab40779017ef76eaf9f26dd427f5a3a958526b8878_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:5892097dad581a64c8e719ab40779017ef76eaf9f26dd427f5a3a958526b8878_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:5892097dad581a64c8e719ab40779017ef76eaf9f26dd427f5a3a958526b8878_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:35529853993d22db0e171ead911ad6be43aad6fb7412ad60cc8780dd041eeac6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:35529853993d22db0e171ead911ad6be43aad6fb7412ad60cc8780dd041eeac6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:35529853993d22db0e171ead911ad6be43aad6fb7412ad60cc8780dd041eeac6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5d387d45ed0b6fd342086f33f1ccf62baa32242672fe1bb2e3d9edf1cd5d5357_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5d387d45ed0b6fd342086f33f1ccf62baa32242672fe1bb2e3d9edf1cd5d5357_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5d387d45ed0b6fd342086f33f1ccf62baa32242672fe1bb2e3d9edf1cd5d5357_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:75e9dfe6ade249647f22ace08fb6261bf010a5cbd649503dfd36022b0ac21947_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:75e9dfe6ade249647f22ace08fb6261bf010a5cbd649503dfd36022b0ac21947_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:75e9dfe6ade249647f22ace08fb6261bf010a5cbd649503dfd36022b0ac21947_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cbbe1259462471e34d2d457236b91870f658ad850e48a2916eecd79727e6063a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cbbe1259462471e34d2d457236b91870f658ad850e48a2916eecd79727e6063a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cbbe1259462471e34d2d457236b91870f658ad850e48a2916eecd79727e6063a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:04bbb72da799d3d6121078bbd86fcbbf04141aae2be700dba76edbabc3898cb4_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:04bbb72da799d3d6121078bbd86fcbbf04141aae2be700dba76edbabc3898cb4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:04bbb72da799d3d6121078bbd86fcbbf04141aae2be700dba76edbabc3898cb4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2a6242ed76e5a16c639f3e9cc29ffa98c4dd38b1eeea2e98998a91a7bfcffbdd_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2a6242ed76e5a16c639f3e9cc29ffa98c4dd38b1eeea2e98998a91a7bfcffbdd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2a6242ed76e5a16c639f3e9cc29ffa98c4dd38b1eeea2e98998a91a7bfcffbdd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ad94418151b25cbf9cac34d024e453ce4a1da18a9a8a037c6cd501cc81be5141_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ad94418151b25cbf9cac34d024e453ce4a1da18a9a8a037c6cd501cc81be5141_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ad94418151b25cbf9cac34d024e453ce4a1da18a9a8a037c6cd501cc81be5141_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ce77d59453ff13bc72e6aea66117e5df0e435bc5e483dd4b8dcfb480c92780e0_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ce77d59453ff13bc72e6aea66117e5df0e435bc5e483dd4b8dcfb480c92780e0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ce77d59453ff13bc72e6aea66117e5df0e435bc5e483dd4b8dcfb480c92780e0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:05c6827b78a5be71ae14dbd308cad44b474fd45396a0a275070615123845dc83_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:05c6827b78a5be71ae14dbd308cad44b474fd45396a0a275070615123845dc83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:05c6827b78a5be71ae14dbd308cad44b474fd45396a0a275070615123845dc83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:17c1269701067a9a8f1d7ad7d6b12a5c0ad1de0910c184406d8420ef07f2e118_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:17c1269701067a9a8f1d7ad7d6b12a5c0ad1de0910c184406d8420ef07f2e118_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:17c1269701067a9a8f1d7ad7d6b12a5c0ad1de0910c184406d8420ef07f2e118_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:58be962c119c805a6a97b6aaa9c841eeeb02c9ea4d820ec6e5cb1ab925948289_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:58be962c119c805a6a97b6aaa9c841eeeb02c9ea4d820ec6e5cb1ab925948289_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:58be962c119c805a6a97b6aaa9c841eeeb02c9ea4d820ec6e5cb1ab925948289_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9f57e81d03517f434e21aa6167cbfcc2f7a069bac497faf0222a030a9d63ff84_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9f57e81d03517f434e21aa6167cbfcc2f7a069bac497faf0222a030a9d63ff84_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9f57e81d03517f434e21aa6167cbfcc2f7a069bac497faf0222a030a9d63ff84_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:35a145bb29bfd1c31730b192dd4f5a2040c8204bd5618fa7d06d6aaaf931ad99_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:35a145bb29bfd1c31730b192dd4f5a2040c8204bd5618fa7d06d6aaaf931ad99_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:35a145bb29bfd1c31730b192dd4f5a2040c8204bd5618fa7d06d6aaaf931ad99_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d7a2eeb4b4a3fcc4a228714db8a6fe9118bbe916b3179be4042b13fab587621b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d7a2eeb4b4a3fcc4a228714db8a6fe9118bbe916b3179be4042b13fab587621b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d7a2eeb4b4a3fcc4a228714db8a6fe9118bbe916b3179be4042b13fab587621b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:e21440158d43b96d2defd42f27e2945e612dd4554796b9d30fc052bfe2a43389_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:e21440158d43b96d2defd42f27e2945e612dd4554796b9d30fc052bfe2a43389_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:e21440158d43b96d2defd42f27e2945e612dd4554796b9d30fc052bfe2a43389_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbaaffebd6656688829b0a807bd1740076f2d6d8d5e3657aa300713e1791dc61_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbaaffebd6656688829b0a807bd1740076f2d6d8d5e3657aa300713e1791dc61_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbaaffebd6656688829b0a807bd1740076f2d6d8d5e3657aa300713e1791dc61_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:2311e3a8e8adb67d8c72c0df1dc473d7202824938491b82285989bfb10a10ae0_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:2311e3a8e8adb67d8c72c0df1dc473d7202824938491b82285989bfb10a10ae0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:2311e3a8e8adb67d8c72c0df1dc473d7202824938491b82285989bfb10a10ae0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:510fa5b2b426e01e06907deba9ea30bd177e596a3b18e2919f0ddff82843b4fb_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:510fa5b2b426e01e06907deba9ea30bd177e596a3b18e2919f0ddff82843b4fb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:510fa5b2b426e01e06907deba9ea30bd177e596a3b18e2919f0ddff82843b4fb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:58e2a31b5b39a13cc91ef51600be97d3609f252a7f6a22bb55649445b8850777_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:58e2a31b5b39a13cc91ef51600be97d3609f252a7f6a22bb55649445b8850777_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:58e2a31b5b39a13cc91ef51600be97d3609f252a7f6a22bb55649445b8850777_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:dcb989aca5199e9197e5004cef42bd412b63d856d3c0fb23de188b9de32a3927_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:dcb989aca5199e9197e5004cef42bd412b63d856d3c0fb23de188b9de32a3927_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:dcb989aca5199e9197e5004cef42bd412b63d856d3c0fb23de188b9de32a3927_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:04bc721c42c8ba150d61bb9d813105b7027ecd26c38928b471e05eb031af30ef_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:04bc721c42c8ba150d61bb9d813105b7027ecd26c38928b471e05eb031af30ef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:04bc721c42c8ba150d61bb9d813105b7027ecd26c38928b471e05eb031af30ef_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:27535309ffe483bfdf73b76758f97b1f748b2d0ffeb0be91e67813ac492cd570_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:27535309ffe483bfdf73b76758f97b1f748b2d0ffeb0be91e67813ac492cd570_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:27535309ffe483bfdf73b76758f97b1f748b2d0ffeb0be91e67813ac492cd570_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:45f231114e1ddd0f7befba9cd252fc146db8a7a26c24947835ea5949202b9d60_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:45f231114e1ddd0f7befba9cd252fc146db8a7a26c24947835ea5949202b9d60_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:45f231114e1ddd0f7befba9cd252fc146db8a7a26c24947835ea5949202b9d60_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:58facbe238eddd92b53099c9cc8c7419d1550d32e57759291c4cbca666c91d1f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:58facbe238eddd92b53099c9cc8c7419d1550d32e57759291c4cbca666c91d1f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:58facbe238eddd92b53099c9cc8c7419d1550d32e57759291c4cbca666c91d1f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:10ae223cd4364291504b88b702a86246162f08d3a69feb32d27b8c20d4859368_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:10ae223cd4364291504b88b702a86246162f08d3a69feb32d27b8c20d4859368_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:10ae223cd4364291504b88b702a86246162f08d3a69feb32d27b8c20d4859368_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:555e55dee776735a1748818ed0f20575fc0e8cd338d18919a75016a7abe88223_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:555e55dee776735a1748818ed0f20575fc0e8cd338d18919a75016a7abe88223_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:555e55dee776735a1748818ed0f20575fc0e8cd338d18919a75016a7abe88223_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:6a3c5941880c61d07e56f271355d31653096121c8afb5f1af7fc45d1c2cb35ac_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:6a3c5941880c61d07e56f271355d31653096121c8afb5f1af7fc45d1c2cb35ac_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:6a3c5941880c61d07e56f271355d31653096121c8afb5f1af7fc45d1c2cb35ac_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:88134f2123140f16553a9bdde1fcc4acad2d048308e8102871ed73d169f878c5_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:88134f2123140f16553a9bdde1fcc4acad2d048308e8102871ed73d169f878c5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:88134f2123140f16553a9bdde1fcc4acad2d048308e8102871ed73d169f878c5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:1c9cc47a78fa993f8d29142220fae37259c4179d8c414d63d64c8899da991e20_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:1c9cc47a78fa993f8d29142220fae37259c4179d8c414d63d64c8899da991e20_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:1c9cc47a78fa993f8d29142220fae37259c4179d8c414d63d64c8899da991e20_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3ecbd7aaa1c507fd2297c7c75b79ad6d090c4c6f618195ffa69b03936a483a73_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3ecbd7aaa1c507fd2297c7c75b79ad6d090c4c6f618195ffa69b03936a483a73_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3ecbd7aaa1c507fd2297c7c75b79ad6d090c4c6f618195ffa69b03936a483a73_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bde8fd80d02e817c6f166cedf305fde13f298b77bb1ef117cf6df594e9ef42ba_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bde8fd80d02e817c6f166cedf305fde13f298b77bb1ef117cf6df594e9ef42ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bde8fd80d02e817c6f166cedf305fde13f298b77bb1ef117cf6df594e9ef42ba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d17a681769d66685a0b7494261b076ce4cd548bd63ea15632472ce11d250aeb9_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d17a681769d66685a0b7494261b076ce4cd548bd63ea15632472ce11d250aeb9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d17a681769d66685a0b7494261b076ce4cd548bd63ea15632472ce11d250aeb9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:4e1a179fbef4040805c8459e2b95ebe19ce0700588448a517a59a9cd53b729e2_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:4e1a179fbef4040805c8459e2b95ebe19ce0700588448a517a59a9cd53b729e2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:4e1a179fbef4040805c8459e2b95ebe19ce0700588448a517a59a9cd53b729e2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8d83af3f1b49df76b061185784f8fb09cdbe2a69227396aeae29acef430151b2_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8d83af3f1b49df76b061185784f8fb09cdbe2a69227396aeae29acef430151b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8d83af3f1b49df76b061185784f8fb09cdbe2a69227396aeae29acef430151b2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:937773e52fa27dc0955ca18864cdd92999f2c306844ac7370855bf0f733936bf_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:937773e52fa27dc0955ca18864cdd92999f2c306844ac7370855bf0f733936bf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:937773e52fa27dc0955ca18864cdd92999f2c306844ac7370855bf0f733936bf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:0d3bad3a2fdf0065c684f5230d70dcc8e409e8eac77c05ae3c96a2f0ef7691af_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:0d3bad3a2fdf0065c684f5230d70dcc8e409e8eac77c05ae3c96a2f0ef7691af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:0d3bad3a2fdf0065c684f5230d70dcc8e409e8eac77c05ae3c96a2f0ef7691af_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8020d174ca38de3e6fd043e88d9cc99bcff3f122213fcf7f3401109840e5f836_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8020d174ca38de3e6fd043e88d9cc99bcff3f122213fcf7f3401109840e5f836_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8020d174ca38de3e6fd043e88d9cc99bcff3f122213fcf7f3401109840e5f836_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:b1bdce7ab2da5d78661deb28655869c3ef5b465c84deaed87f1051a9ff80de46_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:b1bdce7ab2da5d78661deb28655869c3ef5b465c84deaed87f1051a9ff80de46_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:b1bdce7ab2da5d78661deb28655869c3ef5b465c84deaed87f1051a9ff80de46_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:123945773bb359a072ced643524a5c2a7b3bdcf01f3dcd32c93e0871bdd1d069_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:123945773bb359a072ced643524a5c2a7b3bdcf01f3dcd32c93e0871bdd1d069_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:123945773bb359a072ced643524a5c2a7b3bdcf01f3dcd32c93e0871bdd1d069_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:197409a9cfd1994b720a409a5b533481224d936d8a497b2366a82a5ba89a825b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:197409a9cfd1994b720a409a5b533481224d936d8a497b2366a82a5ba89a825b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:197409a9cfd1994b720a409a5b533481224d936d8a497b2366a82a5ba89a825b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5386117e0836512e7d413236dd09fe0ceea6d8efb57086ac978122c9dc389f1e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5386117e0836512e7d413236dd09fe0ceea6d8efb57086ac978122c9dc389f1e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5386117e0836512e7d413236dd09fe0ceea6d8efb57086ac978122c9dc389f1e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ca546246196b2ade2da766b82892c3646ee31b7b318227e12fff55587e7cf798_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ca546246196b2ade2da766b82892c3646ee31b7b318227e12fff55587e7cf798_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ca546246196b2ade2da766b82892c3646ee31b7b318227e12fff55587e7cf798_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a92d30f060e85a77974b727ad8b45d11db6bc1724cc4c8fcebbbea0c01b4ea59_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a92d30f060e85a77974b727ad8b45d11db6bc1724cc4c8fcebbbea0c01b4ea59_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a92d30f060e85a77974b727ad8b45d11db6bc1724cc4c8fcebbbea0c01b4ea59_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ce32166f81967cc551375285d9659c4511888a843e825165e53264bda6d29735_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ce32166f81967cc551375285d9659c4511888a843e825165e53264bda6d29735_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ce32166f81967cc551375285d9659c4511888a843e825165e53264bda6d29735_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:dbbd928683fdd68347e0a60bcebde2977290228a85dce4dd9c6e61ad3013185b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:dbbd928683fdd68347e0a60bcebde2977290228a85dce4dd9c6e61ad3013185b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:dbbd928683fdd68347e0a60bcebde2977290228a85dce4dd9c6e61ad3013185b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ee873d42877999d28e8cf0c9a2dd0193c9b925d96b804edb542e26596746113e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ee873d42877999d28e8cf0c9a2dd0193c9b925d96b804edb542e26596746113e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ee873d42877999d28e8cf0c9a2dd0193c9b925d96b804edb542e26596746113e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bd9845e0cf30d148957a7d8cfd5747f0e31a3153d226a54e18cd57f07ae2be6_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bd9845e0cf30d148957a7d8cfd5747f0e31a3153d226a54e18cd57f07ae2be6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bd9845e0cf30d148957a7d8cfd5747f0e31a3153d226a54e18cd57f07ae2be6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:63f106ab0f9ea50868debd99cdb6d07c45b9137ca033862536c84da5f920b330_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:63f106ab0f9ea50868debd99cdb6d07c45b9137ca033862536c84da5f920b330_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:63f106ab0f9ea50868debd99cdb6d07c45b9137ca033862536c84da5f920b330_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:66eaac0c0a7fd7e753e7de3c7bb4d033bf2acc0f58e1cb6e1be7c6ae294109ac_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:66eaac0c0a7fd7e753e7de3c7bb4d033bf2acc0f58e1cb6e1be7c6ae294109ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:66eaac0c0a7fd7e753e7de3c7bb4d033bf2acc0f58e1cb6e1be7c6ae294109ac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:792324d24c7d7cf0f9d5c912d32eba303e35f6dab71df1266c613f511a337f6d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:792324d24c7d7cf0f9d5c912d32eba303e35f6dab71df1266c613f511a337f6d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:792324d24c7d7cf0f9d5c912d32eba303e35f6dab71df1266c613f511a337f6d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2be624efb98b975b6fd44b71d9632ea17125dac2c5e960f4546d3ec967aa75c8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2be624efb98b975b6fd44b71d9632ea17125dac2c5e960f4546d3ec967aa75c8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2be624efb98b975b6fd44b71d9632ea17125dac2c5e960f4546d3ec967aa75c8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:7f419f3f95329b6631d0028c1c34bf87dae05458125c99032ccd9ef6d25a9817_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:7f419f3f95329b6631d0028c1c34bf87dae05458125c99032ccd9ef6d25a9817_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:7f419f3f95329b6631d0028c1c34bf87dae05458125c99032ccd9ef6d25a9817_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d47923944af7bc86e8941e3145f8999292ae0d10c12fd47b8642b19b8140dff6_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d47923944af7bc86e8941e3145f8999292ae0d10c12fd47b8642b19b8140dff6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d47923944af7bc86e8941e3145f8999292ae0d10c12fd47b8642b19b8140dff6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d6ea27589420a9d3833141dec58ffd355cbfb5b3f4a644f1d9165d18de898f7f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d6ea27589420a9d3833141dec58ffd355cbfb5b3f4a644f1d9165d18de898f7f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d6ea27589420a9d3833141dec58ffd355cbfb5b3f4a644f1d9165d18de898f7f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4fd75386dace3f85123b9724904dc8699839fec011ba104f932a1c071511b0f2_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4fd75386dace3f85123b9724904dc8699839fec011ba104f932a1c071511b0f2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4fd75386dace3f85123b9724904dc8699839fec011ba104f932a1c071511b0f2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8a824e34e179ee9d31f7f04e8316f72e72386b0a5149acb29a86eaba4bfeeac7_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8a824e34e179ee9d31f7f04e8316f72e72386b0a5149acb29a86eaba4bfeeac7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8a824e34e179ee9d31f7f04e8316f72e72386b0a5149acb29a86eaba4bfeeac7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:bc390567b04d943ced36774d0d23564a3ac548c7e65476511f565b3268e7e5f4_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:bc390567b04d943ced36774d0d23564a3ac548c7e65476511f565b3268e7e5f4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:bc390567b04d943ced36774d0d23564a3ac548c7e65476511f565b3268e7e5f4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:f81893728b3145fd8cf3124c8322152a39a6a6dcecc22c5635f708d70d6441e9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:f81893728b3145fd8cf3124c8322152a39a6a6dcecc22c5635f708d70d6441e9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:f81893728b3145fd8cf3124c8322152a39a6a6dcecc22c5635f708d70d6441e9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:29dc083a72ca8243e2cba74319507ef722b899d7d2adbb184e0f2a613685a7cc_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:29dc083a72ca8243e2cba74319507ef722b899d7d2adbb184e0f2a613685a7cc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:29dc083a72ca8243e2cba74319507ef722b899d7d2adbb184e0f2a613685a7cc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:33a37556677131e9053cd0acd67884aa7b0f1c4ea9755aa50890a90f5818f92c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:33a37556677131e9053cd0acd67884aa7b0f1c4ea9755aa50890a90f5818f92c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:33a37556677131e9053cd0acd67884aa7b0f1c4ea9755aa50890a90f5818f92c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6bd2c9cc84327f1150b503a960d4a39ee3cd89864e340b7adb6af23c515a7cea_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6bd2c9cc84327f1150b503a960d4a39ee3cd89864e340b7adb6af23c515a7cea_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6bd2c9cc84327f1150b503a960d4a39ee3cd89864e340b7adb6af23c515a7cea_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ee976bb4134fb80bcb17727ab547c29804427b8f9c1befcd70afe303c9c3c9df_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ee976bb4134fb80bcb17727ab547c29804427b8f9c1befcd70afe303c9c3c9df_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ee976bb4134fb80bcb17727ab547c29804427b8f9c1befcd70afe303c9c3c9df_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:920f7e62a7a32df527e8f68eda40d4c65ba960c194ea31a9398dcbf5325e1daa_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:920f7e62a7a32df527e8f68eda40d4c65ba960c194ea31a9398dcbf5325e1daa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:920f7e62a7a32df527e8f68eda40d4c65ba960c194ea31a9398dcbf5325e1daa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:96d0b82bf59d09b8c8fc3ddc533d6c3f5d139d69f058f4171910ce57a8cef9c9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:96d0b82bf59d09b8c8fc3ddc533d6c3f5d139d69f058f4171910ce57a8cef9c9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:96d0b82bf59d09b8c8fc3ddc533d6c3f5d139d69f058f4171910ce57a8cef9c9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de13ebfbaec81788cdbf0d24c4d83f33eecf6996bd4b81ab1a9d60d1925b64a1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de13ebfbaec81788cdbf0d24c4d83f33eecf6996bd4b81ab1a9d60d1925b64a1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de13ebfbaec81788cdbf0d24c4d83f33eecf6996bd4b81ab1a9d60d1925b64a1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:df25d8f43c3c350e69df77cfc30a3bd7305ed33640cf75c902bc6042d78119b6_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:df25d8f43c3c350e69df77cfc30a3bd7305ed33640cf75c902bc6042d78119b6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:df25d8f43c3c350e69df77cfc30a3bd7305ed33640cf75c902bc6042d78119b6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0d321b8b7557ac625caf6ad70ca1e67a1aaf7e32bcdf9ec3f11c13e19b87cfab_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0d321b8b7557ac625caf6ad70ca1e67a1aaf7e32bcdf9ec3f11c13e19b87cfab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0d321b8b7557ac625caf6ad70ca1e67a1aaf7e32bcdf9ec3f11c13e19b87cfab_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0e4133151f34a78b61b784f5460e598020d1b663bac2f2e4402eeb8c7f1de0e2_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0e4133151f34a78b61b784f5460e598020d1b663bac2f2e4402eeb8c7f1de0e2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0e4133151f34a78b61b784f5460e598020d1b663bac2f2e4402eeb8c7f1de0e2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:c81c37336178f676b92b8a64a9c37272cead0018d125ce49a393dddccf26f0f4_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:c81c37336178f676b92b8a64a9c37272cead0018d125ce49a393dddccf26f0f4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:c81c37336178f676b92b8a64a9c37272cead0018d125ce49a393dddccf26f0f4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:761a7b01044002c74e7aba067e837355523f1a339969070c0d9d433595616e11_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:761a7b01044002c74e7aba067e837355523f1a339969070c0d9d433595616e11_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:761a7b01044002c74e7aba067e837355523f1a339969070c0d9d433595616e11_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:cac7f82c41b4c5d56b14a894f3d70cf6d73cea1568c7ae23b26bf4d76b1ff8be_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:cac7f82c41b4c5d56b14a894f3d70cf6d73cea1568c7ae23b26bf4d76b1ff8be_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:cac7f82c41b4c5d56b14a894f3d70cf6d73cea1568c7ae23b26bf4d76b1ff8be_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ff31a74541ab7094f3fb99e1a1a27d232493ac192c11bd5695af3cd5ae68a315_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ff31a74541ab7094f3fb99e1a1a27d232493ac192c11bd5695af3cd5ae68a315_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ff31a74541ab7094f3fb99e1a1a27d232493ac192c11bd5695af3cd5ae68a315_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:17eaea4bbaa6e62c74c1c6827bbcc9d661c3874dad7b55e30da8f185d7adb9e3_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:17eaea4bbaa6e62c74c1c6827bbcc9d661c3874dad7b55e30da8f185d7adb9e3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:17eaea4bbaa6e62c74c1c6827bbcc9d661c3874dad7b55e30da8f185d7adb9e3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:29a02a53341de32baa04c8397c101cf63dcc62fe367dddef2d5018f3b29e9e2d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:29a02a53341de32baa04c8397c101cf63dcc62fe367dddef2d5018f3b29e9e2d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:29a02a53341de32baa04c8397c101cf63dcc62fe367dddef2d5018f3b29e9e2d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:31007a47283330c6c3bb6e8763e787089e0b9baf35126f93b3933b1d0b5920cb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:31007a47283330c6c3bb6e8763e787089e0b9baf35126f93b3933b1d0b5920cb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:31007a47283330c6c3bb6e8763e787089e0b9baf35126f93b3933b1d0b5920cb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bddae57668d8dcb474d2a6a95e3e9351f8eae4a3333f4c886f8c53b34c956788_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bddae57668d8dcb474d2a6a95e3e9351f8eae4a3333f4c886f8c53b34c956788_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bddae57668d8dcb474d2a6a95e3e9351f8eae4a3333f4c886f8c53b34c956788_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:247705d66acef25f3b926e3022ec5d34ffd1bbaada1fffc67731c3616be5102b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:247705d66acef25f3b926e3022ec5d34ffd1bbaada1fffc67731c3616be5102b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:247705d66acef25f3b926e3022ec5d34ffd1bbaada1fffc67731c3616be5102b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2af3e438f911d3aa3d82692d18411b8fc56022bb7cf4baabb47545999001585b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2af3e438f911d3aa3d82692d18411b8fc56022bb7cf4baabb47545999001585b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2af3e438f911d3aa3d82692d18411b8fc56022bb7cf4baabb47545999001585b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:7f85ff091a0d8b06eccb238a2fd760ca3bca967884d68c1f4534d469f604d1ee_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:7f85ff091a0d8b06eccb238a2fd760ca3bca967884d68c1f4534d469f604d1ee_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:7f85ff091a0d8b06eccb238a2fd760ca3bca967884d68c1f4534d469f604d1ee_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c26c4d6ccaa5bd9ded34f8ee9bc1cd0582bf16ad32fe4d180e8185b3e873ecf6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c26c4d6ccaa5bd9ded34f8ee9bc1cd0582bf16ad32fe4d180e8185b3e873ecf6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c26c4d6ccaa5bd9ded34f8ee9bc1cd0582bf16ad32fe4d180e8185b3e873ecf6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f16e995e21cd183002d86bafb210c819e42233171bb18efebe8755f6346719_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f16e995e21cd183002d86bafb210c819e42233171bb18efebe8755f6346719_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f16e995e21cd183002d86bafb210c819e42233171bb18efebe8755f6346719_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:515efa006e60800c5d490d5344f5a074c8ce2def306693f3173dc525f908b989_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:515efa006e60800c5d490d5344f5a074c8ce2def306693f3173dc525f908b989_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:515efa006e60800c5d490d5344f5a074c8ce2def306693f3173dc525f908b989_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:64ef93e2a8693f00a5583436646d8521c681541e6272d014aad859d667883f8e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:64ef93e2a8693f00a5583436646d8521c681541e6272d014aad859d667883f8e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:64ef93e2a8693f00a5583436646d8521c681541e6272d014aad859d667883f8e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e302e87bdb3a62e35e444b877890297fdfc72aab54c898702ca4f327368b94bb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e302e87bdb3a62e35e444b877890297fdfc72aab54c898702ca4f327368b94bb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e302e87bdb3a62e35e444b877890297fdfc72aab54c898702ca4f327368b94bb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:04ed231913652135d55f7568625b24bdae36eecb758b626f67f924ca2e11f9c9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:04ed231913652135d55f7568625b24bdae36eecb758b626f67f924ca2e11f9c9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:04ed231913652135d55f7568625b24bdae36eecb758b626f67f924ca2e11f9c9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:23705a6102622d9363b5a39fb5c6bf31c3211936068d07903ecf116e814a0fc0_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:23705a6102622d9363b5a39fb5c6bf31c3211936068d07903ecf116e814a0fc0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:23705a6102622d9363b5a39fb5c6bf31c3211936068d07903ecf116e814a0fc0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:bb901c64bf59bdd90c1f3ac0bb9db1e8dc7d52f55c6dea6912c0f7b0e1ce26d9_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:bb901c64bf59bdd90c1f3ac0bb9db1e8dc7d52f55c6dea6912c0f7b0e1ce26d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:bb901c64bf59bdd90c1f3ac0bb9db1e8dc7d52f55c6dea6912c0f7b0e1ce26d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d36cac43e30c5430ae4eb07ffd952069adb108e1f5d4b51471b3cd166a351de3_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d36cac43e30c5430ae4eb07ffd952069adb108e1f5d4b51471b3cd166a351de3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d36cac43e30c5430ae4eb07ffd952069adb108e1f5d4b51471b3cd166a351de3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0b1448f15c83b047b688fa8f20c02198d8ee2d5493a1b16641289e464cb32f05_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0b1448f15c83b047b688fa8f20c02198d8ee2d5493a1b16641289e464cb32f05_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0b1448f15c83b047b688fa8f20c02198d8ee2d5493a1b16641289e464cb32f05_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2cac34759fa7f1896fa88f0805e862fa9ccb7ec3168344fcb2e2db79a3bfd301_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2cac34759fa7f1896fa88f0805e862fa9ccb7ec3168344fcb2e2db79a3bfd301_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2cac34759fa7f1896fa88f0805e862fa9ccb7ec3168344fcb2e2db79a3bfd301_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3b39a5c369ed72849f770b035799fc99b2483cc05ca138e34f244d68a133af8f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3b39a5c369ed72849f770b035799fc99b2483cc05ca138e34f244d68a133af8f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3b39a5c369ed72849f770b035799fc99b2483cc05ca138e34f244d68a133af8f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:96e7ed5d6bb1591579a91f61a1c317c48aa777f3d443279247a3171cd6b8a3be_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:96e7ed5d6bb1591579a91f61a1c317c48aa777f3d443279247a3171cd6b8a3be_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:96e7ed5d6bb1591579a91f61a1c317c48aa777f3d443279247a3171cd6b8a3be_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:17861a1a45c4c5baa4f4045b01f1c85a73b3be00db2cc097dfc42a7994916e46_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:17861a1a45c4c5baa4f4045b01f1c85a73b3be00db2cc097dfc42a7994916e46_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:17861a1a45c4c5baa4f4045b01f1c85a73b3be00db2cc097dfc42a7994916e46_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:51b605ad52f3f2e716c3cbe0f1b39657713ef1f908ec3fa96f6ef9bcd06929fd_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:51b605ad52f3f2e716c3cbe0f1b39657713ef1f908ec3fa96f6ef9bcd06929fd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:51b605ad52f3f2e716c3cbe0f1b39657713ef1f908ec3fa96f6ef9bcd06929fd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb8e6e6e5037265b1c27e2f3ae8cc2ba61cfe7e0ba4a3f658649b14eb3442226_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb8e6e6e5037265b1c27e2f3ae8cc2ba61cfe7e0ba4a3f658649b14eb3442226_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb8e6e6e5037265b1c27e2f3ae8cc2ba61cfe7e0ba4a3f658649b14eb3442226_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:5d8778a616e9a1f3bc076fb44ced78a06000af9c6c738355cd42065121e234ea_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:5d8778a616e9a1f3bc076fb44ced78a06000af9c6c738355cd42065121e234ea_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:5d8778a616e9a1f3bc076fb44ced78a06000af9c6c738355cd42065121e234ea_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:d35059c83a8d8eb8338e3443521228908e53a38b6d50b1d8f5680417e6c5a74c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:d35059c83a8d8eb8338e3443521228908e53a38b6d50b1d8f5680417e6c5a74c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:d35059c83a8d8eb8338e3443521228908e53a38b6d50b1d8f5680417e6c5a74c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:de20468c4b2b46a39243fbfb86c3c4d2bb9beedfb2293c669e90ff7dabb46a16_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:de20468c4b2b46a39243fbfb86c3c4d2bb9beedfb2293c669e90ff7dabb46a16_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:de20468c4b2b46a39243fbfb86c3c4d2bb9beedfb2293c669e90ff7dabb46a16_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:a9bce8dfa4a4cccec18a71c4e1ec59162728841e5e5ba364b84f3b06a0c53ee5_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:a9bce8dfa4a4cccec18a71c4e1ec59162728841e5e5ba364b84f3b06a0c53ee5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:a9bce8dfa4a4cccec18a71c4e1ec59162728841e5e5ba364b84f3b06a0c53ee5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:b020a11975467bf1482857040560c3e2bf14e3506bdc512d134b73c6b968bf09_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:b020a11975467bf1482857040560c3e2bf14e3506bdc512d134b73c6b968bf09_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:b020a11975467bf1482857040560c3e2bf14e3506bdc512d134b73c6b968bf09_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:fc734a1d7408a04489958f6e4f8345fa5efe0a38a3a9807c21645446e2818667_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:fc734a1d7408a04489958f6e4f8345fa5efe0a38a3a9807c21645446e2818667_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:fc734a1d7408a04489958f6e4f8345fa5efe0a38a3a9807c21645446e2818667_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:199e7cdad3067cd48ec455730a76b9e2c3b3e17a247189f09492a81ea6fce29a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:199e7cdad3067cd48ec455730a76b9e2c3b3e17a247189f09492a81ea6fce29a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:199e7cdad3067cd48ec455730a76b9e2c3b3e17a247189f09492a81ea6fce29a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:7e63391eeea9b22ff5767fad7523138aa7654a487e88dc52cd85de9ad180a404_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:7e63391eeea9b22ff5767fad7523138aa7654a487e88dc52cd85de9ad180a404_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:7e63391eeea9b22ff5767fad7523138aa7654a487e88dc52cd85de9ad180a404_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:d4c540639f3f249336e783f05eceb9dc474c482bb5ec61a5e5600642eeb3313d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:d4c540639f3f249336e783f05eceb9dc474c482bb5ec61a5e5600642eeb3313d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:d4c540639f3f249336e783f05eceb9dc474c482bb5ec61a5e5600642eeb3313d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9b53af12f6a034797d30b2a2610bb1f2963565ede8b0eddd61c9c77a39298995_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9b53af12f6a034797d30b2a2610bb1f2963565ede8b0eddd61c9c77a39298995_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9b53af12f6a034797d30b2a2610bb1f2963565ede8b0eddd61c9c77a39298995_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:dfbb4e179c3cc1cdd5cb261debb181ee89e30aadf4220b2a1806c8712b5029ca_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:dfbb4e179c3cc1cdd5cb261debb181ee89e30aadf4220b2a1806c8712b5029ca_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:dfbb4e179c3cc1cdd5cb261debb181ee89e30aadf4220b2a1806c8712b5029ca_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:f94931cd1c6340c3a752db577090f7676a1a09348135d412db4a805fc387fdc5_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:f94931cd1c6340c3a752db577090f7676a1a09348135d412db4a805fc387fdc5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:f94931cd1c6340c3a752db577090f7676a1a09348135d412db4a805fc387fdc5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:555200bcc71ee842a5589e5aeb0b933967fb694b3fe54c5837b827cf05dd520f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:555200bcc71ee842a5589e5aeb0b933967fb694b3fe54c5837b827cf05dd520f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:555200bcc71ee842a5589e5aeb0b933967fb694b3fe54c5837b827cf05dd520f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7657a1e6b3f7557e3b77bfd42a1861805bbf028627964e3994f7b4d2d8fa4510_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7657a1e6b3f7557e3b77bfd42a1861805bbf028627964e3994f7b4d2d8fa4510_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7657a1e6b3f7557e3b77bfd42a1861805bbf028627964e3994f7b4d2d8fa4510_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e8278626ff3a82564f4d86bcdfe97263dae18e8eb28d07c97ec75c0d4a151268_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e8278626ff3a82564f4d86bcdfe97263dae18e8eb28d07c97ec75c0d4a151268_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e8278626ff3a82564f4d86bcdfe97263dae18e8eb28d07c97ec75c0d4a151268_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b58690a76859d8c325cc305da2661ffc14fd802793f36e6fc6018d33ed8d1a8_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b58690a76859d8c325cc305da2661ffc14fd802793f36e6fc6018d33ed8d1a8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b58690a76859d8c325cc305da2661ffc14fd802793f36e6fc6018d33ed8d1a8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:608475d6a1981fc35e1044c1290f824d1f12c48d59a5297f08c0f0eac4e1c8fb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:608475d6a1981fc35e1044c1290f824d1f12c48d59a5297f08c0f0eac4e1c8fb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:608475d6a1981fc35e1044c1290f824d1f12c48d59a5297f08c0f0eac4e1c8fb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:60bff9d3005602f993c6a48466baf5e11264e81d2d1f9ebe1afabfa78f9ff15f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:60bff9d3005602f993c6a48466baf5e11264e81d2d1f9ebe1afabfa78f9ff15f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:60bff9d3005602f993c6a48466baf5e11264e81d2d1f9ebe1afabfa78f9ff15f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:7fd04a3319f88a885f911af0952296156c89af754a8728c938baeb43fc32cf64_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:7fd04a3319f88a885f911af0952296156c89af754a8728c938baeb43fc32cf64_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:7fd04a3319f88a885f911af0952296156c89af754a8728c938baeb43fc32cf64_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2581bde4076e6e77ee31fa15dcf76678395af214d3983b3065cb36c2d64f9848_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2581bde4076e6e77ee31fa15dcf76678395af214d3983b3065cb36c2d64f9848_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2581bde4076e6e77ee31fa15dcf76678395af214d3983b3065cb36c2d64f9848_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5bd498ccf10bbf6231544850e5579c4efaa6dddc05d073b6c64626cc5c86ef73_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5bd498ccf10bbf6231544850e5579c4efaa6dddc05d073b6c64626cc5c86ef73_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5bd498ccf10bbf6231544850e5579c4efaa6dddc05d073b6c64626cc5c86ef73_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a0408eaec2a94d7294108fb5945c5170b9243dbf87c7a7e84ac8176935a840fa_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a0408eaec2a94d7294108fb5945c5170b9243dbf87c7a7e84ac8176935a840fa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a0408eaec2a94d7294108fb5945c5170b9243dbf87c7a7e84ac8176935a840fa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:cd04021000a13912e0d674130f204c97c9299a65159001934f553fd35d947d3a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:cd04021000a13912e0d674130f204c97c9299a65159001934f553fd35d947d3a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:cd04021000a13912e0d674130f204c97c9299a65159001934f553fd35d947d3a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:0b7f2a45c238f778a0af8ce70b672d2f07f945138eff24d9d8dab2f4cda42395_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:0b7f2a45c238f778a0af8ce70b672d2f07f945138eff24d9d8dab2f4cda42395_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:0b7f2a45c238f778a0af8ce70b672d2f07f945138eff24d9d8dab2f4cda42395_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1b1d1055f7c2fe909ad50f00380eaeadb750ad2c92fb6883700941703dde754e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1b1d1055f7c2fe909ad50f00380eaeadb750ad2c92fb6883700941703dde754e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1b1d1055f7c2fe909ad50f00380eaeadb750ad2c92fb6883700941703dde754e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:948cfa21c324a4ee8a6dee456f22cca589dce4cce3955388868ae7830eb8fa2a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:948cfa21c324a4ee8a6dee456f22cca589dce4cce3955388868ae7830eb8fa2a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:948cfa21c324a4ee8a6dee456f22cca589dce4cce3955388868ae7830eb8fa2a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:f2076b51430cc6816a2a8a38acc240968237aa05cc33b488aabcbb62790867ca_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:f2076b51430cc6816a2a8a38acc240968237aa05cc33b488aabcbb62790867ca_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:f2076b51430cc6816a2a8a38acc240968237aa05cc33b488aabcbb62790867ca_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:15321111d08773607e32a82db18fd96c96968ccb56060a2d94923944a8041d65_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:15321111d08773607e32a82db18fd96c96968ccb56060a2d94923944a8041d65_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:15321111d08773607e32a82db18fd96c96968ccb56060a2d94923944a8041d65_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:226684f964088b16f45eeb88c1c72b45b97fed5472450750842d5a94ae182123_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:226684f964088b16f45eeb88c1c72b45b97fed5472450750842d5a94ae182123_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:226684f964088b16f45eeb88c1c72b45b97fed5472450750842d5a94ae182123_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:398711da99f0be245b1d1c33dbdc072b94b9a9e0094394bd187ca8124433de38_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:398711da99f0be245b1d1c33dbdc072b94b9a9e0094394bd187ca8124433de38_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:398711da99f0be245b1d1c33dbdc072b94b9a9e0094394bd187ca8124433de38_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:5d03de91f80ebdbbbe3de76bb524bbeb4bba1c7bfbfe6e9ef3061dd62eb545e8_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:5d03de91f80ebdbbbe3de76bb524bbeb4bba1c7bfbfe6e9ef3061dd62eb545e8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:5d03de91f80ebdbbbe3de76bb524bbeb4bba1c7bfbfe6e9ef3061dd62eb545e8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1b896572b17d855424baf18a1bb9e58c319f5498185baeaa040d979821e5bb79_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1b896572b17d855424baf18a1bb9e58c319f5498185baeaa040d979821e5bb79_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1b896572b17d855424baf18a1bb9e58c319f5498185baeaa040d979821e5bb79_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:30105855d24dd4c3416e17eec9266e4caacbeeec9e36cc9e9ae1733af3002c6f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:30105855d24dd4c3416e17eec9266e4caacbeeec9e36cc9e9ae1733af3002c6f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:30105855d24dd4c3416e17eec9266e4caacbeeec9e36cc9e9ae1733af3002c6f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:44b0d159389f0fdc0abf7023190d9308dee80fd68d5279e424d4babb8b8153c6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:44b0d159389f0fdc0abf7023190d9308dee80fd68d5279e424d4babb8b8153c6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:44b0d159389f0fdc0abf7023190d9308dee80fd68d5279e424d4babb8b8153c6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:068d48bc63d566b84b2bd4e99d1519eec979146bf3847b2c876c4d5c53b58100_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:068d48bc63d566b84b2bd4e99d1519eec979146bf3847b2c876c4d5c53b58100_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:068d48bc63d566b84b2bd4e99d1519eec979146bf3847b2c876c4d5c53b58100_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8fb377b359ff0abe7ab81ef61c2d39fefd7945027b0ef0ce79bc6730a3e37928_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8fb377b359ff0abe7ab81ef61c2d39fefd7945027b0ef0ce79bc6730a3e37928_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8fb377b359ff0abe7ab81ef61c2d39fefd7945027b0ef0ce79bc6730a3e37928_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:cd3ce0111d03ba2fdbfa000158117727c1ef5d42c64152488ff6996e8bcbe183_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:cd3ce0111d03ba2fdbfa000158117727c1ef5d42c64152488ff6996e8bcbe183_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:cd3ce0111d03ba2fdbfa000158117727c1ef5d42c64152488ff6996e8bcbe183_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:4d09bf9ae1384a717881bd8e9791d30462af842df9e4df1cf39c5a9e3f0aed98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ca042c7fcc0d046b98c239c109399f9bb786072075bffabcf391604f206d5671_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d8be6865a69585184a74d7b9d7e3c4295e9487d172f77688a084114b2330c21a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:fdc1cb7a13d9747a56df0cc706a2797f0d8b6820e30cbb9737d3466a6aa9f813_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:58c01f288f26e46a5db54b1720e908cd66874692f1481d3795761faddcade35b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:950c0af402e304851f7c911c49f85a186d37319d467ec94eb30264417a11ca53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:be1de44d356b34123bd72ac93501b1e3399bc0d7f454ab41dbf9ee1e891c5b6a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f01a16d58d5fd5a7366353330c82c4c1625bdeab98b04ac980c92dd3791cda2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:136e9192928dee3b2a2b650e2998257b604d2017d3d86534182c60a5c26ba725_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:49a7862803a48ea4919216a718153cda0d3e2cceb1e7b3191310067486aba6ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:6a9debd24c7c1f9fca5f0484d72737cb2c9c4f11800c3333fb5cb719e9fb68ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:e1682313c9cbd1f0760f99af61a39415395b073704d92bba97de50c136c6a9d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0001b49903cb0368b48a237271287e2b5579a7beb8c61efbae1f362699d8faf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:36282ae55143491dd562a82d206bc2e9ea8d4f5efefe3197451f1c539ad7f7f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:4a8fa6462de7c7ff3216ce4025473254651e3f8a11b973a23b67815d1b73d142_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d8fa72da4fc47e2db6b63a7a68edf8d552e5109f72560aadd414af976d23eca0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5d92f3826eeea5fb284d232c0cb31510e46f2fce54db2b2619306e82d204cb16_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:631ef47a1169586cb737bfda8aef9597baeb44a938e7ddcab8e310c26a8678df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a7c7353f650032dca77642c03e019f51d03e0e53833cae3e4a8716e6aa5e3137_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f410d487f10ece94e49ad03aa9aa54b6584828b6635c5cd66278a069ed9a3f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:66247c4f0f00a63379797545da76f072b9d04d905c3490c1e6b06d2a47432586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:99045a0ec0103824cd7b15967ea1a24cbfa22895b8da40fe90cb7eb0b7c64db1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:c7c19ecdea825d8402fce7ee3f07f825a1209b1f0abb7d8b885bad4fa8e824c0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:d8e7283b76c170d28eaba53e376eeb606663cd514a2efb1097e435a2c6618bda_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8e7193f7c19de6f69e9e8bf1195ff7127f5b457c77982dc0ea82aa9654b41295_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8fb8a008770a84e5773858aaa251d2b23af127a68baf5aa102b605731eb32f9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c88d4210daf86e56f8fe6a9e923664148e2a16a2eb3d9dbc03889c475f2ab12b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c93d7dc23599ae79223b1cbd7dc62b63f6e6c9985d26b06bc6f3a692b8568096_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:03bae849f44c05a66cc12a3e7ec69cf462de8229a81790d0bbed26bf58fb7818_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:369f2e68a42db6bb9a7a9fe09ce1cfbd8cd0259152aff798c6dc3187c6932342_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:411b9cb7c1d396effcf80e85da91e0ba5df158214c97ea6fc7b88773ef5fdda2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:52df8f81e7dbe8760ccc4f802e996c078af59d30b43f8fb846924c2d8a8524b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:771b9045bebbe6d595a7b43af45cb23fec31ba8b426bb2bf2538ef3e71cd71d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:84d96f10dabfd6d3e58cd64b2df81b4e529d64309a8a2c68ca0d7783409c9082_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:4713871ce0ddc73dbbfe1d579c3d94d9075fa52c634b51f5d972ae9731994549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:eda0961b2797331cebf194a05ac642394b34ab65dadbffa8c3affc6bfbfe2a1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6b2bb2fa9cf85ff14f8ab121bb56e561ad5ad51d21e5f54395940e923d5067ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:80c62b74fdcc97a49b2d574bc03b30849ffcb7d616e4b2549ad0259c2b29ad9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:bbc22eb8e3c8b1a8b6e4c4c67a7de7029a663844b4a32d97ce4cb9409c6a7243_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6011021567e1b310f6fe5f0e5416eac0829cb573e35de172121a652563d28637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6cad7b501d971d385c8ba32a6e3f0dc3dc9cdc8ef555b0f0cc520bb90dabab5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:9c623fd87f8beb75e2998a9f1aa6a1f4add460a2aeb9200206e3e7e481719612_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f16776ec75d1c98068c8e15523180e3b153e60aae643c6e971c3f106dd61dcb3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:256b9cdf5cd6f7e32a11f65f7534e1ca39a3fccb64d411c7e01dd6f5e600c237_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2df60a790d449041be77c83066368408cf3a62fd2cadc06fc1e3b2e3f9b074b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a1cc536befd8a5ff3721fefef114be3a771e5bc3e862baec096f187d3eac44c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:e472908acaa3abff6ae83312687ee22a6302d1385ae4f56700aa96b50cdde34b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a1a143d95357905e27c585da7330170cb37abdd2df796d9ee40254df33124938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:c41824e92b4311f735409b231983ed7e69400752527c7a0b9a5d86295743dfce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:e12ab95c40b730b22978b8347af251b1e45d9e0f78eac600eb512f544ee8b043_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f20e5378fed66eac4219322baa1c6a8afe929f63d9def922e0d904b398fa70e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:318a0790da610c038878f604984d2097fd343950c7a19be380c0eb93576ce149_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:4f1a52ec8422a2103eceff5faf897ea1de2a945e85cc5bc6c92db45d6e11ece7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5a36a4b8ee0617b0fc7a53dc73e1312c0ebd9f15e1b76df50f977edb0280e684_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:7d0ee426415366ae01e279d9d37910f512101d0ca3954fada90f7ef41c463623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c0a7a8aca0b9c4e91ac53aadae071314d6a767bcfb5609a4efdc669febc0ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:302d8765190f09765b6337353913bba111f3141b51b2cd6568ffa92ff4cd3e6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4c87d15448cd5a9f91cf4da7bab75a8ad7ff9c41d7a50593773790a2a033fd75_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:5892097dad581a64c8e719ab40779017ef76eaf9f26dd427f5a3a958526b8878_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:35529853993d22db0e171ead911ad6be43aad6fb7412ad60cc8780dd041eeac6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5d387d45ed0b6fd342086f33f1ccf62baa32242672fe1bb2e3d9edf1cd5d5357_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:75e9dfe6ade249647f22ace08fb6261bf010a5cbd649503dfd36022b0ac21947_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cbbe1259462471e34d2d457236b91870f658ad850e48a2916eecd79727e6063a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:04bbb72da799d3d6121078bbd86fcbbf04141aae2be700dba76edbabc3898cb4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2a6242ed76e5a16c639f3e9cc29ffa98c4dd38b1eeea2e98998a91a7bfcffbdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ad94418151b25cbf9cac34d024e453ce4a1da18a9a8a037c6cd501cc81be5141_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ce77d59453ff13bc72e6aea66117e5df0e435bc5e483dd4b8dcfb480c92780e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:05c6827b78a5be71ae14dbd308cad44b474fd45396a0a275070615123845dc83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:17c1269701067a9a8f1d7ad7d6b12a5c0ad1de0910c184406d8420ef07f2e118_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:58be962c119c805a6a97b6aaa9c841eeeb02c9ea4d820ec6e5cb1ab925948289_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9f57e81d03517f434e21aa6167cbfcc2f7a069bac497faf0222a030a9d63ff84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:35a145bb29bfd1c31730b192dd4f5a2040c8204bd5618fa7d06d6aaaf931ad99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d7a2eeb4b4a3fcc4a228714db8a6fe9118bbe916b3179be4042b13fab587621b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:e21440158d43b96d2defd42f27e2945e612dd4554796b9d30fc052bfe2a43389_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbaaffebd6656688829b0a807bd1740076f2d6d8d5e3657aa300713e1791dc61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:2311e3a8e8adb67d8c72c0df1dc473d7202824938491b82285989bfb10a10ae0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:510fa5b2b426e01e06907deba9ea30bd177e596a3b18e2919f0ddff82843b4fb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:58e2a31b5b39a13cc91ef51600be97d3609f252a7f6a22bb55649445b8850777_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:dcb989aca5199e9197e5004cef42bd412b63d856d3c0fb23de188b9de32a3927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:04bc721c42c8ba150d61bb9d813105b7027ecd26c38928b471e05eb031af30ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:27535309ffe483bfdf73b76758f97b1f748b2d0ffeb0be91e67813ac492cd570_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:45f231114e1ddd0f7befba9cd252fc146db8a7a26c24947835ea5949202b9d60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:58facbe238eddd92b53099c9cc8c7419d1550d32e57759291c4cbca666c91d1f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:10ae223cd4364291504b88b702a86246162f08d3a69feb32d27b8c20d4859368_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:555e55dee776735a1748818ed0f20575fc0e8cd338d18919a75016a7abe88223_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:6a3c5941880c61d07e56f271355d31653096121c8afb5f1af7fc45d1c2cb35ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:88134f2123140f16553a9bdde1fcc4acad2d048308e8102871ed73d169f878c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:1c9cc47a78fa993f8d29142220fae37259c4179d8c414d63d64c8899da991e20_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3ecbd7aaa1c507fd2297c7c75b79ad6d090c4c6f618195ffa69b03936a483a73_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bde8fd80d02e817c6f166cedf305fde13f298b77bb1ef117cf6df594e9ef42ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d17a681769d66685a0b7494261b076ce4cd548bd63ea15632472ce11d250aeb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:4e1a179fbef4040805c8459e2b95ebe19ce0700588448a517a59a9cd53b729e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8d83af3f1b49df76b061185784f8fb09cdbe2a69227396aeae29acef430151b2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:937773e52fa27dc0955ca18864cdd92999f2c306844ac7370855bf0f733936bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:123945773bb359a072ced643524a5c2a7b3bdcf01f3dcd32c93e0871bdd1d069_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:197409a9cfd1994b720a409a5b533481224d936d8a497b2366a82a5ba89a825b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5386117e0836512e7d413236dd09fe0ceea6d8efb57086ac978122c9dc389f1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ca546246196b2ade2da766b82892c3646ee31b7b318227e12fff55587e7cf798_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a92d30f060e85a77974b727ad8b45d11db6bc1724cc4c8fcebbbea0c01b4ea59_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ce32166f81967cc551375285d9659c4511888a843e825165e53264bda6d29735_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:dbbd928683fdd68347e0a60bcebde2977290228a85dce4dd9c6e61ad3013185b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ee873d42877999d28e8cf0c9a2dd0193c9b925d96b804edb542e26596746113e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bd9845e0cf30d148957a7d8cfd5747f0e31a3153d226a54e18cd57f07ae2be6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:63f106ab0f9ea50868debd99cdb6d07c45b9137ca033862536c84da5f920b330_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:66eaac0c0a7fd7e753e7de3c7bb4d033bf2acc0f58e1cb6e1be7c6ae294109ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:792324d24c7d7cf0f9d5c912d32eba303e35f6dab71df1266c613f511a337f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2be624efb98b975b6fd44b71d9632ea17125dac2c5e960f4546d3ec967aa75c8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:7f419f3f95329b6631d0028c1c34bf87dae05458125c99032ccd9ef6d25a9817_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d47923944af7bc86e8941e3145f8999292ae0d10c12fd47b8642b19b8140dff6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d6ea27589420a9d3833141dec58ffd355cbfb5b3f4a644f1d9165d18de898f7f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4fd75386dace3f85123b9724904dc8699839fec011ba104f932a1c071511b0f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8a824e34e179ee9d31f7f04e8316f72e72386b0a5149acb29a86eaba4bfeeac7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:bc390567b04d943ced36774d0d23564a3ac548c7e65476511f565b3268e7e5f4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:f81893728b3145fd8cf3124c8322152a39a6a6dcecc22c5635f708d70d6441e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:920f7e62a7a32df527e8f68eda40d4c65ba960c194ea31a9398dcbf5325e1daa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:96d0b82bf59d09b8c8fc3ddc533d6c3f5d139d69f058f4171910ce57a8cef9c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de13ebfbaec81788cdbf0d24c4d83f33eecf6996bd4b81ab1a9d60d1925b64a1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:df25d8f43c3c350e69df77cfc30a3bd7305ed33640cf75c902bc6042d78119b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0d321b8b7557ac625caf6ad70ca1e67a1aaf7e32bcdf9ec3f11c13e19b87cfab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0e4133151f34a78b61b784f5460e598020d1b663bac2f2e4402eeb8c7f1de0e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:c81c37336178f676b92b8a64a9c37272cead0018d125ce49a393dddccf26f0f4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:761a7b01044002c74e7aba067e837355523f1a339969070c0d9d433595616e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:cac7f82c41b4c5d56b14a894f3d70cf6d73cea1568c7ae23b26bf4d76b1ff8be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ff31a74541ab7094f3fb99e1a1a27d232493ac192c11bd5695af3cd5ae68a315_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:17eaea4bbaa6e62c74c1c6827bbcc9d661c3874dad7b55e30da8f185d7adb9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:29a02a53341de32baa04c8397c101cf63dcc62fe367dddef2d5018f3b29e9e2d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:31007a47283330c6c3bb6e8763e787089e0b9baf35126f93b3933b1d0b5920cb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bddae57668d8dcb474d2a6a95e3e9351f8eae4a3333f4c886f8c53b34c956788_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:247705d66acef25f3b926e3022ec5d34ffd1bbaada1fffc67731c3616be5102b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2af3e438f911d3aa3d82692d18411b8fc56022bb7cf4baabb47545999001585b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:7f85ff091a0d8b06eccb238a2fd760ca3bca967884d68c1f4534d469f604d1ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c26c4d6ccaa5bd9ded34f8ee9bc1cd0582bf16ad32fe4d180e8185b3e873ecf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f16e995e21cd183002d86bafb210c819e42233171bb18efebe8755f6346719_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:515efa006e60800c5d490d5344f5a074c8ce2def306693f3173dc525f908b989_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:64ef93e2a8693f00a5583436646d8521c681541e6272d014aad859d667883f8e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e302e87bdb3a62e35e444b877890297fdfc72aab54c898702ca4f327368b94bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:04ed231913652135d55f7568625b24bdae36eecb758b626f67f924ca2e11f9c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:23705a6102622d9363b5a39fb5c6bf31c3211936068d07903ecf116e814a0fc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:bb901c64bf59bdd90c1f3ac0bb9db1e8dc7d52f55c6dea6912c0f7b0e1ce26d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d36cac43e30c5430ae4eb07ffd952069adb108e1f5d4b51471b3cd166a351de3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0b1448f15c83b047b688fa8f20c02198d8ee2d5493a1b16641289e464cb32f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2cac34759fa7f1896fa88f0805e862fa9ccb7ec3168344fcb2e2db79a3bfd301_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3b39a5c369ed72849f770b035799fc99b2483cc05ca138e34f244d68a133af8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:96e7ed5d6bb1591579a91f61a1c317c48aa777f3d443279247a3171cd6b8a3be_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:17861a1a45c4c5baa4f4045b01f1c85a73b3be00db2cc097dfc42a7994916e46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:51b605ad52f3f2e716c3cbe0f1b39657713ef1f908ec3fa96f6ef9bcd06929fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb8e6e6e5037265b1c27e2f3ae8cc2ba61cfe7e0ba4a3f658649b14eb3442226_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:5d8778a616e9a1f3bc076fb44ced78a06000af9c6c738355cd42065121e234ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:d35059c83a8d8eb8338e3443521228908e53a38b6d50b1d8f5680417e6c5a74c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:de20468c4b2b46a39243fbfb86c3c4d2bb9beedfb2293c669e90ff7dabb46a16_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:a9bce8dfa4a4cccec18a71c4e1ec59162728841e5e5ba364b84f3b06a0c53ee5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:b020a11975467bf1482857040560c3e2bf14e3506bdc512d134b73c6b968bf09_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:fc734a1d7408a04489958f6e4f8345fa5efe0a38a3a9807c21645446e2818667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:199e7cdad3067cd48ec455730a76b9e2c3b3e17a247189f09492a81ea6fce29a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:7e63391eeea9b22ff5767fad7523138aa7654a487e88dc52cd85de9ad180a404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:d4c540639f3f249336e783f05eceb9dc474c482bb5ec61a5e5600642eeb3313d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9b53af12f6a034797d30b2a2610bb1f2963565ede8b0eddd61c9c77a39298995_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:dfbb4e179c3cc1cdd5cb261debb181ee89e30aadf4220b2a1806c8712b5029ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:f94931cd1c6340c3a752db577090f7676a1a09348135d412db4a805fc387fdc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:555200bcc71ee842a5589e5aeb0b933967fb694b3fe54c5837b827cf05dd520f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7657a1e6b3f7557e3b77bfd42a1861805bbf028627964e3994f7b4d2d8fa4510_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e8278626ff3a82564f4d86bcdfe97263dae18e8eb28d07c97ec75c0d4a151268_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b58690a76859d8c325cc305da2661ffc14fd802793f36e6fc6018d33ed8d1a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:608475d6a1981fc35e1044c1290f824d1f12c48d59a5297f08c0f0eac4e1c8fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:60bff9d3005602f993c6a48466baf5e11264e81d2d1f9ebe1afabfa78f9ff15f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:7fd04a3319f88a885f911af0952296156c89af754a8728c938baeb43fc32cf64_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2581bde4076e6e77ee31fa15dcf76678395af214d3983b3065cb36c2d64f9848_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5bd498ccf10bbf6231544850e5579c4efaa6dddc05d073b6c64626cc5c86ef73_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a0408eaec2a94d7294108fb5945c5170b9243dbf87c7a7e84ac8176935a840fa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:cd04021000a13912e0d674130f204c97c9299a65159001934f553fd35d947d3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:0b7f2a45c238f778a0af8ce70b672d2f07f945138eff24d9d8dab2f4cda42395_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1b1d1055f7c2fe909ad50f00380eaeadb750ad2c92fb6883700941703dde754e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:948cfa21c324a4ee8a6dee456f22cca589dce4cce3955388868ae7830eb8fa2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:f2076b51430cc6816a2a8a38acc240968237aa05cc33b488aabcbb62790867ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:15321111d08773607e32a82db18fd96c96968ccb56060a2d94923944a8041d65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:226684f964088b16f45eeb88c1c72b45b97fed5472450750842d5a94ae182123_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:398711da99f0be245b1d1c33dbdc072b94b9a9e0094394bd187ca8124433de38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:5d03de91f80ebdbbbe3de76bb524bbeb4bba1c7bfbfe6e9ef3061dd62eb545e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1b896572b17d855424baf18a1bb9e58c319f5498185baeaa040d979821e5bb79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:30105855d24dd4c3416e17eec9266e4caacbeeec9e36cc9e9ae1733af3002c6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:44b0d159389f0fdc0abf7023190d9308dee80fd68d5279e424d4babb8b8153c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:068d48bc63d566b84b2bd4e99d1519eec979146bf3847b2c876c4d5c53b58100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8fb377b359ff0abe7ab81ef61c2d39fefd7945027b0ef0ce79bc6730a3e37928_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:cd3ce0111d03ba2fdbfa000158117727c1ef5d42c64152488ff6996e8bcbe183_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:0d3bad3a2fdf0065c684f5230d70dcc8e409e8eac77c05ae3c96a2f0ef7691af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8020d174ca38de3e6fd043e88d9cc99bcff3f122213fcf7f3401109840e5f836_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:b1bdce7ab2da5d78661deb28655869c3ef5b465c84deaed87f1051a9ff80de46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:29dc083a72ca8243e2cba74319507ef722b899d7d2adbb184e0f2a613685a7cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:33a37556677131e9053cd0acd67884aa7b0f1c4ea9755aa50890a90f5818f92c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6bd2c9cc84327f1150b503a960d4a39ee3cd89864e340b7adb6af23c515a7cea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ee976bb4134fb80bcb17727ab547c29804427b8f9c1befcd70afe303c9c3c9df_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:4d09bf9ae1384a717881bd8e9791d30462af842df9e4df1cf39c5a9e3f0aed98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ca042c7fcc0d046b98c239c109399f9bb786072075bffabcf391604f206d5671_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d8be6865a69585184a74d7b9d7e3c4295e9487d172f77688a084114b2330c21a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:fdc1cb7a13d9747a56df0cc706a2797f0d8b6820e30cbb9737d3466a6aa9f813_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:58c01f288f26e46a5db54b1720e908cd66874692f1481d3795761faddcade35b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:950c0af402e304851f7c911c49f85a186d37319d467ec94eb30264417a11ca53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:be1de44d356b34123bd72ac93501b1e3399bc0d7f454ab41dbf9ee1e891c5b6a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f01a16d58d5fd5a7366353330c82c4c1625bdeab98b04ac980c92dd3791cda2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:136e9192928dee3b2a2b650e2998257b604d2017d3d86534182c60a5c26ba725_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:49a7862803a48ea4919216a718153cda0d3e2cceb1e7b3191310067486aba6ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:6a9debd24c7c1f9fca5f0484d72737cb2c9c4f11800c3333fb5cb719e9fb68ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:e1682313c9cbd1f0760f99af61a39415395b073704d92bba97de50c136c6a9d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0001b49903cb0368b48a237271287e2b5579a7beb8c61efbae1f362699d8faf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:36282ae55143491dd562a82d206bc2e9ea8d4f5efefe3197451f1c539ad7f7f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:4a8fa6462de7c7ff3216ce4025473254651e3f8a11b973a23b67815d1b73d142_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d8fa72da4fc47e2db6b63a7a68edf8d552e5109f72560aadd414af976d23eca0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5d92f3826eeea5fb284d232c0cb31510e46f2fce54db2b2619306e82d204cb16_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:631ef47a1169586cb737bfda8aef9597baeb44a938e7ddcab8e310c26a8678df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a7c7353f650032dca77642c03e019f51d03e0e53833cae3e4a8716e6aa5e3137_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f410d487f10ece94e49ad03aa9aa54b6584828b6635c5cd66278a069ed9a3f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:66247c4f0f00a63379797545da76f072b9d04d905c3490c1e6b06d2a47432586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:99045a0ec0103824cd7b15967ea1a24cbfa22895b8da40fe90cb7eb0b7c64db1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:c7c19ecdea825d8402fce7ee3f07f825a1209b1f0abb7d8b885bad4fa8e824c0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:d8e7283b76c170d28eaba53e376eeb606663cd514a2efb1097e435a2c6618bda_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8e7193f7c19de6f69e9e8bf1195ff7127f5b457c77982dc0ea82aa9654b41295_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8fb8a008770a84e5773858aaa251d2b23af127a68baf5aa102b605731eb32f9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c88d4210daf86e56f8fe6a9e923664148e2a16a2eb3d9dbc03889c475f2ab12b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c93d7dc23599ae79223b1cbd7dc62b63f6e6c9985d26b06bc6f3a692b8568096_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:03bae849f44c05a66cc12a3e7ec69cf462de8229a81790d0bbed26bf58fb7818_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:369f2e68a42db6bb9a7a9fe09ce1cfbd8cd0259152aff798c6dc3187c6932342_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:411b9cb7c1d396effcf80e85da91e0ba5df158214c97ea6fc7b88773ef5fdda2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:52df8f81e7dbe8760ccc4f802e996c078af59d30b43f8fb846924c2d8a8524b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:771b9045bebbe6d595a7b43af45cb23fec31ba8b426bb2bf2538ef3e71cd71d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:84d96f10dabfd6d3e58cd64b2df81b4e529d64309a8a2c68ca0d7783409c9082_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:4713871ce0ddc73dbbfe1d579c3d94d9075fa52c634b51f5d972ae9731994549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:eda0961b2797331cebf194a05ac642394b34ab65dadbffa8c3affc6bfbfe2a1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6b2bb2fa9cf85ff14f8ab121bb56e561ad5ad51d21e5f54395940e923d5067ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:80c62b74fdcc97a49b2d574bc03b30849ffcb7d616e4b2549ad0259c2b29ad9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:bbc22eb8e3c8b1a8b6e4c4c67a7de7029a663844b4a32d97ce4cb9409c6a7243_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6011021567e1b310f6fe5f0e5416eac0829cb573e35de172121a652563d28637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6cad7b501d971d385c8ba32a6e3f0dc3dc9cdc8ef555b0f0cc520bb90dabab5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:9c623fd87f8beb75e2998a9f1aa6a1f4add460a2aeb9200206e3e7e481719612_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f16776ec75d1c98068c8e15523180e3b153e60aae643c6e971c3f106dd61dcb3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:256b9cdf5cd6f7e32a11f65f7534e1ca39a3fccb64d411c7e01dd6f5e600c237_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2df60a790d449041be77c83066368408cf3a62fd2cadc06fc1e3b2e3f9b074b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a1cc536befd8a5ff3721fefef114be3a771e5bc3e862baec096f187d3eac44c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:e472908acaa3abff6ae83312687ee22a6302d1385ae4f56700aa96b50cdde34b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a1a143d95357905e27c585da7330170cb37abdd2df796d9ee40254df33124938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:c41824e92b4311f735409b231983ed7e69400752527c7a0b9a5d86295743dfce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:e12ab95c40b730b22978b8347af251b1e45d9e0f78eac600eb512f544ee8b043_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f20e5378fed66eac4219322baa1c6a8afe929f63d9def922e0d904b398fa70e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:318a0790da610c038878f604984d2097fd343950c7a19be380c0eb93576ce149_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:4f1a52ec8422a2103eceff5faf897ea1de2a945e85cc5bc6c92db45d6e11ece7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5a36a4b8ee0617b0fc7a53dc73e1312c0ebd9f15e1b76df50f977edb0280e684_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:7d0ee426415366ae01e279d9d37910f512101d0ca3954fada90f7ef41c463623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c0a7a8aca0b9c4e91ac53aadae071314d6a767bcfb5609a4efdc669febc0ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:302d8765190f09765b6337353913bba111f3141b51b2cd6568ffa92ff4cd3e6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4c87d15448cd5a9f91cf4da7bab75a8ad7ff9c41d7a50593773790a2a033fd75_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:5892097dad581a64c8e719ab40779017ef76eaf9f26dd427f5a3a958526b8878_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:35529853993d22db0e171ead911ad6be43aad6fb7412ad60cc8780dd041eeac6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5d387d45ed0b6fd342086f33f1ccf62baa32242672fe1bb2e3d9edf1cd5d5357_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:75e9dfe6ade249647f22ace08fb6261bf010a5cbd649503dfd36022b0ac21947_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cbbe1259462471e34d2d457236b91870f658ad850e48a2916eecd79727e6063a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:04bbb72da799d3d6121078bbd86fcbbf04141aae2be700dba76edbabc3898cb4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2a6242ed76e5a16c639f3e9cc29ffa98c4dd38b1eeea2e98998a91a7bfcffbdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ad94418151b25cbf9cac34d024e453ce4a1da18a9a8a037c6cd501cc81be5141_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ce77d59453ff13bc72e6aea66117e5df0e435bc5e483dd4b8dcfb480c92780e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:05c6827b78a5be71ae14dbd308cad44b474fd45396a0a275070615123845dc83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:17c1269701067a9a8f1d7ad7d6b12a5c0ad1de0910c184406d8420ef07f2e118_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:58be962c119c805a6a97b6aaa9c841eeeb02c9ea4d820ec6e5cb1ab925948289_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9f57e81d03517f434e21aa6167cbfcc2f7a069bac497faf0222a030a9d63ff84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:35a145bb29bfd1c31730b192dd4f5a2040c8204bd5618fa7d06d6aaaf931ad99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d7a2eeb4b4a3fcc4a228714db8a6fe9118bbe916b3179be4042b13fab587621b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:e21440158d43b96d2defd42f27e2945e612dd4554796b9d30fc052bfe2a43389_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbaaffebd6656688829b0a807bd1740076f2d6d8d5e3657aa300713e1791dc61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:2311e3a8e8adb67d8c72c0df1dc473d7202824938491b82285989bfb10a10ae0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:510fa5b2b426e01e06907deba9ea30bd177e596a3b18e2919f0ddff82843b4fb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:58e2a31b5b39a13cc91ef51600be97d3609f252a7f6a22bb55649445b8850777_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:dcb989aca5199e9197e5004cef42bd412b63d856d3c0fb23de188b9de32a3927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:04bc721c42c8ba150d61bb9d813105b7027ecd26c38928b471e05eb031af30ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:27535309ffe483bfdf73b76758f97b1f748b2d0ffeb0be91e67813ac492cd570_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:45f231114e1ddd0f7befba9cd252fc146db8a7a26c24947835ea5949202b9d60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:58facbe238eddd92b53099c9cc8c7419d1550d32e57759291c4cbca666c91d1f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:10ae223cd4364291504b88b702a86246162f08d3a69feb32d27b8c20d4859368_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:555e55dee776735a1748818ed0f20575fc0e8cd338d18919a75016a7abe88223_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:6a3c5941880c61d07e56f271355d31653096121c8afb5f1af7fc45d1c2cb35ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:88134f2123140f16553a9bdde1fcc4acad2d048308e8102871ed73d169f878c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:1c9cc47a78fa993f8d29142220fae37259c4179d8c414d63d64c8899da991e20_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3ecbd7aaa1c507fd2297c7c75b79ad6d090c4c6f618195ffa69b03936a483a73_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bde8fd80d02e817c6f166cedf305fde13f298b77bb1ef117cf6df594e9ef42ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d17a681769d66685a0b7494261b076ce4cd548bd63ea15632472ce11d250aeb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:4e1a179fbef4040805c8459e2b95ebe19ce0700588448a517a59a9cd53b729e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8d83af3f1b49df76b061185784f8fb09cdbe2a69227396aeae29acef430151b2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:937773e52fa27dc0955ca18864cdd92999f2c306844ac7370855bf0f733936bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:123945773bb359a072ced643524a5c2a7b3bdcf01f3dcd32c93e0871bdd1d069_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:197409a9cfd1994b720a409a5b533481224d936d8a497b2366a82a5ba89a825b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5386117e0836512e7d413236dd09fe0ceea6d8efb57086ac978122c9dc389f1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ca546246196b2ade2da766b82892c3646ee31b7b318227e12fff55587e7cf798_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a92d30f060e85a77974b727ad8b45d11db6bc1724cc4c8fcebbbea0c01b4ea59_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ce32166f81967cc551375285d9659c4511888a843e825165e53264bda6d29735_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:dbbd928683fdd68347e0a60bcebde2977290228a85dce4dd9c6e61ad3013185b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ee873d42877999d28e8cf0c9a2dd0193c9b925d96b804edb542e26596746113e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bd9845e0cf30d148957a7d8cfd5747f0e31a3153d226a54e18cd57f07ae2be6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:63f106ab0f9ea50868debd99cdb6d07c45b9137ca033862536c84da5f920b330_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:66eaac0c0a7fd7e753e7de3c7bb4d033bf2acc0f58e1cb6e1be7c6ae294109ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:792324d24c7d7cf0f9d5c912d32eba303e35f6dab71df1266c613f511a337f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2be624efb98b975b6fd44b71d9632ea17125dac2c5e960f4546d3ec967aa75c8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:7f419f3f95329b6631d0028c1c34bf87dae05458125c99032ccd9ef6d25a9817_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d47923944af7bc86e8941e3145f8999292ae0d10c12fd47b8642b19b8140dff6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d6ea27589420a9d3833141dec58ffd355cbfb5b3f4a644f1d9165d18de898f7f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4fd75386dace3f85123b9724904dc8699839fec011ba104f932a1c071511b0f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8a824e34e179ee9d31f7f04e8316f72e72386b0a5149acb29a86eaba4bfeeac7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:bc390567b04d943ced36774d0d23564a3ac548c7e65476511f565b3268e7e5f4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:f81893728b3145fd8cf3124c8322152a39a6a6dcecc22c5635f708d70d6441e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:920f7e62a7a32df527e8f68eda40d4c65ba960c194ea31a9398dcbf5325e1daa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:96d0b82bf59d09b8c8fc3ddc533d6c3f5d139d69f058f4171910ce57a8cef9c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de13ebfbaec81788cdbf0d24c4d83f33eecf6996bd4b81ab1a9d60d1925b64a1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:df25d8f43c3c350e69df77cfc30a3bd7305ed33640cf75c902bc6042d78119b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0d321b8b7557ac625caf6ad70ca1e67a1aaf7e32bcdf9ec3f11c13e19b87cfab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0e4133151f34a78b61b784f5460e598020d1b663bac2f2e4402eeb8c7f1de0e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:c81c37336178f676b92b8a64a9c37272cead0018d125ce49a393dddccf26f0f4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:761a7b01044002c74e7aba067e837355523f1a339969070c0d9d433595616e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:cac7f82c41b4c5d56b14a894f3d70cf6d73cea1568c7ae23b26bf4d76b1ff8be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ff31a74541ab7094f3fb99e1a1a27d232493ac192c11bd5695af3cd5ae68a315_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:17eaea4bbaa6e62c74c1c6827bbcc9d661c3874dad7b55e30da8f185d7adb9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:29a02a53341de32baa04c8397c101cf63dcc62fe367dddef2d5018f3b29e9e2d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:31007a47283330c6c3bb6e8763e787089e0b9baf35126f93b3933b1d0b5920cb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bddae57668d8dcb474d2a6a95e3e9351f8eae4a3333f4c886f8c53b34c956788_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:247705d66acef25f3b926e3022ec5d34ffd1bbaada1fffc67731c3616be5102b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2af3e438f911d3aa3d82692d18411b8fc56022bb7cf4baabb47545999001585b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:7f85ff091a0d8b06eccb238a2fd760ca3bca967884d68c1f4534d469f604d1ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c26c4d6ccaa5bd9ded34f8ee9bc1cd0582bf16ad32fe4d180e8185b3e873ecf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f16e995e21cd183002d86bafb210c819e42233171bb18efebe8755f6346719_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:515efa006e60800c5d490d5344f5a074c8ce2def306693f3173dc525f908b989_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:64ef93e2a8693f00a5583436646d8521c681541e6272d014aad859d667883f8e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e302e87bdb3a62e35e444b877890297fdfc72aab54c898702ca4f327368b94bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:04ed231913652135d55f7568625b24bdae36eecb758b626f67f924ca2e11f9c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:23705a6102622d9363b5a39fb5c6bf31c3211936068d07903ecf116e814a0fc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:bb901c64bf59bdd90c1f3ac0bb9db1e8dc7d52f55c6dea6912c0f7b0e1ce26d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d36cac43e30c5430ae4eb07ffd952069adb108e1f5d4b51471b3cd166a351de3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0b1448f15c83b047b688fa8f20c02198d8ee2d5493a1b16641289e464cb32f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2cac34759fa7f1896fa88f0805e862fa9ccb7ec3168344fcb2e2db79a3bfd301_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3b39a5c369ed72849f770b035799fc99b2483cc05ca138e34f244d68a133af8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:96e7ed5d6bb1591579a91f61a1c317c48aa777f3d443279247a3171cd6b8a3be_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:17861a1a45c4c5baa4f4045b01f1c85a73b3be00db2cc097dfc42a7994916e46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:51b605ad52f3f2e716c3cbe0f1b39657713ef1f908ec3fa96f6ef9bcd06929fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb8e6e6e5037265b1c27e2f3ae8cc2ba61cfe7e0ba4a3f658649b14eb3442226_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:5d8778a616e9a1f3bc076fb44ced78a06000af9c6c738355cd42065121e234ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:d35059c83a8d8eb8338e3443521228908e53a38b6d50b1d8f5680417e6c5a74c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:de20468c4b2b46a39243fbfb86c3c4d2bb9beedfb2293c669e90ff7dabb46a16_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:a9bce8dfa4a4cccec18a71c4e1ec59162728841e5e5ba364b84f3b06a0c53ee5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:b020a11975467bf1482857040560c3e2bf14e3506bdc512d134b73c6b968bf09_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:fc734a1d7408a04489958f6e4f8345fa5efe0a38a3a9807c21645446e2818667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:199e7cdad3067cd48ec455730a76b9e2c3b3e17a247189f09492a81ea6fce29a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:7e63391eeea9b22ff5767fad7523138aa7654a487e88dc52cd85de9ad180a404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:d4c540639f3f249336e783f05eceb9dc474c482bb5ec61a5e5600642eeb3313d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9b53af12f6a034797d30b2a2610bb1f2963565ede8b0eddd61c9c77a39298995_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:dfbb4e179c3cc1cdd5cb261debb181ee89e30aadf4220b2a1806c8712b5029ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:f94931cd1c6340c3a752db577090f7676a1a09348135d412db4a805fc387fdc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:555200bcc71ee842a5589e5aeb0b933967fb694b3fe54c5837b827cf05dd520f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7657a1e6b3f7557e3b77bfd42a1861805bbf028627964e3994f7b4d2d8fa4510_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e8278626ff3a82564f4d86bcdfe97263dae18e8eb28d07c97ec75c0d4a151268_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b58690a76859d8c325cc305da2661ffc14fd802793f36e6fc6018d33ed8d1a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:608475d6a1981fc35e1044c1290f824d1f12c48d59a5297f08c0f0eac4e1c8fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:60bff9d3005602f993c6a48466baf5e11264e81d2d1f9ebe1afabfa78f9ff15f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:7fd04a3319f88a885f911af0952296156c89af754a8728c938baeb43fc32cf64_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2581bde4076e6e77ee31fa15dcf76678395af214d3983b3065cb36c2d64f9848_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5bd498ccf10bbf6231544850e5579c4efaa6dddc05d073b6c64626cc5c86ef73_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a0408eaec2a94d7294108fb5945c5170b9243dbf87c7a7e84ac8176935a840fa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:cd04021000a13912e0d674130f204c97c9299a65159001934f553fd35d947d3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:0b7f2a45c238f778a0af8ce70b672d2f07f945138eff24d9d8dab2f4cda42395_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1b1d1055f7c2fe909ad50f00380eaeadb750ad2c92fb6883700941703dde754e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:948cfa21c324a4ee8a6dee456f22cca589dce4cce3955388868ae7830eb8fa2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:f2076b51430cc6816a2a8a38acc240968237aa05cc33b488aabcbb62790867ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:15321111d08773607e32a82db18fd96c96968ccb56060a2d94923944a8041d65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:226684f964088b16f45eeb88c1c72b45b97fed5472450750842d5a94ae182123_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:398711da99f0be245b1d1c33dbdc072b94b9a9e0094394bd187ca8124433de38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:5d03de91f80ebdbbbe3de76bb524bbeb4bba1c7bfbfe6e9ef3061dd62eb545e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1b896572b17d855424baf18a1bb9e58c319f5498185baeaa040d979821e5bb79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:30105855d24dd4c3416e17eec9266e4caacbeeec9e36cc9e9ae1733af3002c6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:44b0d159389f0fdc0abf7023190d9308dee80fd68d5279e424d4babb8b8153c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:068d48bc63d566b84b2bd4e99d1519eec979146bf3847b2c876c4d5c53b58100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8fb377b359ff0abe7ab81ef61c2d39fefd7945027b0ef0ce79bc6730a3e37928_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:cd3ce0111d03ba2fdbfa000158117727c1ef5d42c64152488ff6996e8bcbe183_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T05:39:27+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:0d3bad3a2fdf0065c684f5230d70dcc8e409e8eac77c05ae3c96a2f0ef7691af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8020d174ca38de3e6fd043e88d9cc99bcff3f122213fcf7f3401109840e5f836_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:b1bdce7ab2da5d78661deb28655869c3ef5b465c84deaed87f1051a9ff80de46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:29dc083a72ca8243e2cba74319507ef722b899d7d2adbb184e0f2a613685a7cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:33a37556677131e9053cd0acd67884aa7b0f1c4ea9755aa50890a90f5818f92c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6bd2c9cc84327f1150b503a960d4a39ee3cd89864e340b7adb6af23c515a7cea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ee976bb4134fb80bcb17727ab547c29804427b8f9c1befcd70afe303c9c3c9df_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25183"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:4d09bf9ae1384a717881bd8e9791d30462af842df9e4df1cf39c5a9e3f0aed98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ca042c7fcc0d046b98c239c109399f9bb786072075bffabcf391604f206d5671_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d8be6865a69585184a74d7b9d7e3c4295e9487d172f77688a084114b2330c21a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:fdc1cb7a13d9747a56df0cc706a2797f0d8b6820e30cbb9737d3466a6aa9f813_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:58c01f288f26e46a5db54b1720e908cd66874692f1481d3795761faddcade35b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:950c0af402e304851f7c911c49f85a186d37319d467ec94eb30264417a11ca53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:be1de44d356b34123bd72ac93501b1e3399bc0d7f454ab41dbf9ee1e891c5b6a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f01a16d58d5fd5a7366353330c82c4c1625bdeab98b04ac980c92dd3791cda2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:136e9192928dee3b2a2b650e2998257b604d2017d3d86534182c60a5c26ba725_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:49a7862803a48ea4919216a718153cda0d3e2cceb1e7b3191310067486aba6ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:6a9debd24c7c1f9fca5f0484d72737cb2c9c4f11800c3333fb5cb719e9fb68ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:e1682313c9cbd1f0760f99af61a39415395b073704d92bba97de50c136c6a9d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0001b49903cb0368b48a237271287e2b5579a7beb8c61efbae1f362699d8faf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:36282ae55143491dd562a82d206bc2e9ea8d4f5efefe3197451f1c539ad7f7f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:4a8fa6462de7c7ff3216ce4025473254651e3f8a11b973a23b67815d1b73d142_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d8fa72da4fc47e2db6b63a7a68edf8d552e5109f72560aadd414af976d23eca0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5d92f3826eeea5fb284d232c0cb31510e46f2fce54db2b2619306e82d204cb16_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:631ef47a1169586cb737bfda8aef9597baeb44a938e7ddcab8e310c26a8678df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a7c7353f650032dca77642c03e019f51d03e0e53833cae3e4a8716e6aa5e3137_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f410d487f10ece94e49ad03aa9aa54b6584828b6635c5cd66278a069ed9a3f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:66247c4f0f00a63379797545da76f072b9d04d905c3490c1e6b06d2a47432586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:99045a0ec0103824cd7b15967ea1a24cbfa22895b8da40fe90cb7eb0b7c64db1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:c7c19ecdea825d8402fce7ee3f07f825a1209b1f0abb7d8b885bad4fa8e824c0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:d8e7283b76c170d28eaba53e376eeb606663cd514a2efb1097e435a2c6618bda_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8e7193f7c19de6f69e9e8bf1195ff7127f5b457c77982dc0ea82aa9654b41295_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8fb8a008770a84e5773858aaa251d2b23af127a68baf5aa102b605731eb32f9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c88d4210daf86e56f8fe6a9e923664148e2a16a2eb3d9dbc03889c475f2ab12b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c93d7dc23599ae79223b1cbd7dc62b63f6e6c9985d26b06bc6f3a692b8568096_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:03bae849f44c05a66cc12a3e7ec69cf462de8229a81790d0bbed26bf58fb7818_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:369f2e68a42db6bb9a7a9fe09ce1cfbd8cd0259152aff798c6dc3187c6932342_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:411b9cb7c1d396effcf80e85da91e0ba5df158214c97ea6fc7b88773ef5fdda2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:52df8f81e7dbe8760ccc4f802e996c078af59d30b43f8fb846924c2d8a8524b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:771b9045bebbe6d595a7b43af45cb23fec31ba8b426bb2bf2538ef3e71cd71d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:84d96f10dabfd6d3e58cd64b2df81b4e529d64309a8a2c68ca0d7783409c9082_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:4713871ce0ddc73dbbfe1d579c3d94d9075fa52c634b51f5d972ae9731994549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:eda0961b2797331cebf194a05ac642394b34ab65dadbffa8c3affc6bfbfe2a1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6b2bb2fa9cf85ff14f8ab121bb56e561ad5ad51d21e5f54395940e923d5067ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:80c62b74fdcc97a49b2d574bc03b30849ffcb7d616e4b2549ad0259c2b29ad9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:bbc22eb8e3c8b1a8b6e4c4c67a7de7029a663844b4a32d97ce4cb9409c6a7243_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6011021567e1b310f6fe5f0e5416eac0829cb573e35de172121a652563d28637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6cad7b501d971d385c8ba32a6e3f0dc3dc9cdc8ef555b0f0cc520bb90dabab5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:9c623fd87f8beb75e2998a9f1aa6a1f4add460a2aeb9200206e3e7e481719612_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f16776ec75d1c98068c8e15523180e3b153e60aae643c6e971c3f106dd61dcb3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:256b9cdf5cd6f7e32a11f65f7534e1ca39a3fccb64d411c7e01dd6f5e600c237_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2df60a790d449041be77c83066368408cf3a62fd2cadc06fc1e3b2e3f9b074b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a1cc536befd8a5ff3721fefef114be3a771e5bc3e862baec096f187d3eac44c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:e472908acaa3abff6ae83312687ee22a6302d1385ae4f56700aa96b50cdde34b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a1a143d95357905e27c585da7330170cb37abdd2df796d9ee40254df33124938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:c41824e92b4311f735409b231983ed7e69400752527c7a0b9a5d86295743dfce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:e12ab95c40b730b22978b8347af251b1e45d9e0f78eac600eb512f544ee8b043_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f20e5378fed66eac4219322baa1c6a8afe929f63d9def922e0d904b398fa70e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:318a0790da610c038878f604984d2097fd343950c7a19be380c0eb93576ce149_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:4f1a52ec8422a2103eceff5faf897ea1de2a945e85cc5bc6c92db45d6e11ece7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5a36a4b8ee0617b0fc7a53dc73e1312c0ebd9f15e1b76df50f977edb0280e684_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:7d0ee426415366ae01e279d9d37910f512101d0ca3954fada90f7ef41c463623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c0a7a8aca0b9c4e91ac53aadae071314d6a767bcfb5609a4efdc669febc0ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:302d8765190f09765b6337353913bba111f3141b51b2cd6568ffa92ff4cd3e6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4c87d15448cd5a9f91cf4da7bab75a8ad7ff9c41d7a50593773790a2a033fd75_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:5892097dad581a64c8e719ab40779017ef76eaf9f26dd427f5a3a958526b8878_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:35529853993d22db0e171ead911ad6be43aad6fb7412ad60cc8780dd041eeac6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5d387d45ed0b6fd342086f33f1ccf62baa32242672fe1bb2e3d9edf1cd5d5357_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:75e9dfe6ade249647f22ace08fb6261bf010a5cbd649503dfd36022b0ac21947_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cbbe1259462471e34d2d457236b91870f658ad850e48a2916eecd79727e6063a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:04bbb72da799d3d6121078bbd86fcbbf04141aae2be700dba76edbabc3898cb4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2a6242ed76e5a16c639f3e9cc29ffa98c4dd38b1eeea2e98998a91a7bfcffbdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ad94418151b25cbf9cac34d024e453ce4a1da18a9a8a037c6cd501cc81be5141_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ce77d59453ff13bc72e6aea66117e5df0e435bc5e483dd4b8dcfb480c92780e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:05c6827b78a5be71ae14dbd308cad44b474fd45396a0a275070615123845dc83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:17c1269701067a9a8f1d7ad7d6b12a5c0ad1de0910c184406d8420ef07f2e118_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:58be962c119c805a6a97b6aaa9c841eeeb02c9ea4d820ec6e5cb1ab925948289_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9f57e81d03517f434e21aa6167cbfcc2f7a069bac497faf0222a030a9d63ff84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:35a145bb29bfd1c31730b192dd4f5a2040c8204bd5618fa7d06d6aaaf931ad99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d7a2eeb4b4a3fcc4a228714db8a6fe9118bbe916b3179be4042b13fab587621b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:e21440158d43b96d2defd42f27e2945e612dd4554796b9d30fc052bfe2a43389_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbaaffebd6656688829b0a807bd1740076f2d6d8d5e3657aa300713e1791dc61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:2311e3a8e8adb67d8c72c0df1dc473d7202824938491b82285989bfb10a10ae0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:510fa5b2b426e01e06907deba9ea30bd177e596a3b18e2919f0ddff82843b4fb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:58e2a31b5b39a13cc91ef51600be97d3609f252a7f6a22bb55649445b8850777_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:dcb989aca5199e9197e5004cef42bd412b63d856d3c0fb23de188b9de32a3927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:04bc721c42c8ba150d61bb9d813105b7027ecd26c38928b471e05eb031af30ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:27535309ffe483bfdf73b76758f97b1f748b2d0ffeb0be91e67813ac492cd570_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:45f231114e1ddd0f7befba9cd252fc146db8a7a26c24947835ea5949202b9d60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:58facbe238eddd92b53099c9cc8c7419d1550d32e57759291c4cbca666c91d1f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:10ae223cd4364291504b88b702a86246162f08d3a69feb32d27b8c20d4859368_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:555e55dee776735a1748818ed0f20575fc0e8cd338d18919a75016a7abe88223_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:6a3c5941880c61d07e56f271355d31653096121c8afb5f1af7fc45d1c2cb35ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:88134f2123140f16553a9bdde1fcc4acad2d048308e8102871ed73d169f878c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:1c9cc47a78fa993f8d29142220fae37259c4179d8c414d63d64c8899da991e20_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3ecbd7aaa1c507fd2297c7c75b79ad6d090c4c6f618195ffa69b03936a483a73_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bde8fd80d02e817c6f166cedf305fde13f298b77bb1ef117cf6df594e9ef42ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d17a681769d66685a0b7494261b076ce4cd548bd63ea15632472ce11d250aeb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:4e1a179fbef4040805c8459e2b95ebe19ce0700588448a517a59a9cd53b729e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8d83af3f1b49df76b061185784f8fb09cdbe2a69227396aeae29acef430151b2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:937773e52fa27dc0955ca18864cdd92999f2c306844ac7370855bf0f733936bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:0d3bad3a2fdf0065c684f5230d70dcc8e409e8eac77c05ae3c96a2f0ef7691af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8020d174ca38de3e6fd043e88d9cc99bcff3f122213fcf7f3401109840e5f836_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:b1bdce7ab2da5d78661deb28655869c3ef5b465c84deaed87f1051a9ff80de46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:123945773bb359a072ced643524a5c2a7b3bdcf01f3dcd32c93e0871bdd1d069_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:197409a9cfd1994b720a409a5b533481224d936d8a497b2366a82a5ba89a825b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5386117e0836512e7d413236dd09fe0ceea6d8efb57086ac978122c9dc389f1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ca546246196b2ade2da766b82892c3646ee31b7b318227e12fff55587e7cf798_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a92d30f060e85a77974b727ad8b45d11db6bc1724cc4c8fcebbbea0c01b4ea59_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ce32166f81967cc551375285d9659c4511888a843e825165e53264bda6d29735_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:dbbd928683fdd68347e0a60bcebde2977290228a85dce4dd9c6e61ad3013185b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ee873d42877999d28e8cf0c9a2dd0193c9b925d96b804edb542e26596746113e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bd9845e0cf30d148957a7d8cfd5747f0e31a3153d226a54e18cd57f07ae2be6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:63f106ab0f9ea50868debd99cdb6d07c45b9137ca033862536c84da5f920b330_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:66eaac0c0a7fd7e753e7de3c7bb4d033bf2acc0f58e1cb6e1be7c6ae294109ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:792324d24c7d7cf0f9d5c912d32eba303e35f6dab71df1266c613f511a337f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2be624efb98b975b6fd44b71d9632ea17125dac2c5e960f4546d3ec967aa75c8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:7f419f3f95329b6631d0028c1c34bf87dae05458125c99032ccd9ef6d25a9817_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d47923944af7bc86e8941e3145f8999292ae0d10c12fd47b8642b19b8140dff6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d6ea27589420a9d3833141dec58ffd355cbfb5b3f4a644f1d9165d18de898f7f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4fd75386dace3f85123b9724904dc8699839fec011ba104f932a1c071511b0f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8a824e34e179ee9d31f7f04e8316f72e72386b0a5149acb29a86eaba4bfeeac7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:bc390567b04d943ced36774d0d23564a3ac548c7e65476511f565b3268e7e5f4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:f81893728b3145fd8cf3124c8322152a39a6a6dcecc22c5635f708d70d6441e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:29dc083a72ca8243e2cba74319507ef722b899d7d2adbb184e0f2a613685a7cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:33a37556677131e9053cd0acd67884aa7b0f1c4ea9755aa50890a90f5818f92c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6bd2c9cc84327f1150b503a960d4a39ee3cd89864e340b7adb6af23c515a7cea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ee976bb4134fb80bcb17727ab547c29804427b8f9c1befcd70afe303c9c3c9df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:920f7e62a7a32df527e8f68eda40d4c65ba960c194ea31a9398dcbf5325e1daa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:96d0b82bf59d09b8c8fc3ddc533d6c3f5d139d69f058f4171910ce57a8cef9c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de13ebfbaec81788cdbf0d24c4d83f33eecf6996bd4b81ab1a9d60d1925b64a1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:df25d8f43c3c350e69df77cfc30a3bd7305ed33640cf75c902bc6042d78119b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0d321b8b7557ac625caf6ad70ca1e67a1aaf7e32bcdf9ec3f11c13e19b87cfab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0e4133151f34a78b61b784f5460e598020d1b663bac2f2e4402eeb8c7f1de0e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:c81c37336178f676b92b8a64a9c37272cead0018d125ce49a393dddccf26f0f4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:761a7b01044002c74e7aba067e837355523f1a339969070c0d9d433595616e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:cac7f82c41b4c5d56b14a894f3d70cf6d73cea1568c7ae23b26bf4d76b1ff8be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ff31a74541ab7094f3fb99e1a1a27d232493ac192c11bd5695af3cd5ae68a315_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:17eaea4bbaa6e62c74c1c6827bbcc9d661c3874dad7b55e30da8f185d7adb9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:29a02a53341de32baa04c8397c101cf63dcc62fe367dddef2d5018f3b29e9e2d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:31007a47283330c6c3bb6e8763e787089e0b9baf35126f93b3933b1d0b5920cb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bddae57668d8dcb474d2a6a95e3e9351f8eae4a3333f4c886f8c53b34c956788_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:247705d66acef25f3b926e3022ec5d34ffd1bbaada1fffc67731c3616be5102b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2af3e438f911d3aa3d82692d18411b8fc56022bb7cf4baabb47545999001585b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:7f85ff091a0d8b06eccb238a2fd760ca3bca967884d68c1f4534d469f604d1ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c26c4d6ccaa5bd9ded34f8ee9bc1cd0582bf16ad32fe4d180e8185b3e873ecf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f16e995e21cd183002d86bafb210c819e42233171bb18efebe8755f6346719_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:515efa006e60800c5d490d5344f5a074c8ce2def306693f3173dc525f908b989_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:64ef93e2a8693f00a5583436646d8521c681541e6272d014aad859d667883f8e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e302e87bdb3a62e35e444b877890297fdfc72aab54c898702ca4f327368b94bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:04ed231913652135d55f7568625b24bdae36eecb758b626f67f924ca2e11f9c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:23705a6102622d9363b5a39fb5c6bf31c3211936068d07903ecf116e814a0fc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:bb901c64bf59bdd90c1f3ac0bb9db1e8dc7d52f55c6dea6912c0f7b0e1ce26d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d36cac43e30c5430ae4eb07ffd952069adb108e1f5d4b51471b3cd166a351de3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0b1448f15c83b047b688fa8f20c02198d8ee2d5493a1b16641289e464cb32f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2cac34759fa7f1896fa88f0805e862fa9ccb7ec3168344fcb2e2db79a3bfd301_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3b39a5c369ed72849f770b035799fc99b2483cc05ca138e34f244d68a133af8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:96e7ed5d6bb1591579a91f61a1c317c48aa777f3d443279247a3171cd6b8a3be_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:17861a1a45c4c5baa4f4045b01f1c85a73b3be00db2cc097dfc42a7994916e46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:51b605ad52f3f2e716c3cbe0f1b39657713ef1f908ec3fa96f6ef9bcd06929fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb8e6e6e5037265b1c27e2f3ae8cc2ba61cfe7e0ba4a3f658649b14eb3442226_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:5d8778a616e9a1f3bc076fb44ced78a06000af9c6c738355cd42065121e234ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:d35059c83a8d8eb8338e3443521228908e53a38b6d50b1d8f5680417e6c5a74c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:de20468c4b2b46a39243fbfb86c3c4d2bb9beedfb2293c669e90ff7dabb46a16_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:a9bce8dfa4a4cccec18a71c4e1ec59162728841e5e5ba364b84f3b06a0c53ee5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:b020a11975467bf1482857040560c3e2bf14e3506bdc512d134b73c6b968bf09_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:fc734a1d7408a04489958f6e4f8345fa5efe0a38a3a9807c21645446e2818667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:199e7cdad3067cd48ec455730a76b9e2c3b3e17a247189f09492a81ea6fce29a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:7e63391eeea9b22ff5767fad7523138aa7654a487e88dc52cd85de9ad180a404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:d4c540639f3f249336e783f05eceb9dc474c482bb5ec61a5e5600642eeb3313d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9b53af12f6a034797d30b2a2610bb1f2963565ede8b0eddd61c9c77a39298995_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:dfbb4e179c3cc1cdd5cb261debb181ee89e30aadf4220b2a1806c8712b5029ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:f94931cd1c6340c3a752db577090f7676a1a09348135d412db4a805fc387fdc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:555200bcc71ee842a5589e5aeb0b933967fb694b3fe54c5837b827cf05dd520f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7657a1e6b3f7557e3b77bfd42a1861805bbf028627964e3994f7b4d2d8fa4510_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e8278626ff3a82564f4d86bcdfe97263dae18e8eb28d07c97ec75c0d4a151268_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b58690a76859d8c325cc305da2661ffc14fd802793f36e6fc6018d33ed8d1a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:608475d6a1981fc35e1044c1290f824d1f12c48d59a5297f08c0f0eac4e1c8fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:60bff9d3005602f993c6a48466baf5e11264e81d2d1f9ebe1afabfa78f9ff15f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:7fd04a3319f88a885f911af0952296156c89af754a8728c938baeb43fc32cf64_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2581bde4076e6e77ee31fa15dcf76678395af214d3983b3065cb36c2d64f9848_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5bd498ccf10bbf6231544850e5579c4efaa6dddc05d073b6c64626cc5c86ef73_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a0408eaec2a94d7294108fb5945c5170b9243dbf87c7a7e84ac8176935a840fa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:cd04021000a13912e0d674130f204c97c9299a65159001934f553fd35d947d3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:0b7f2a45c238f778a0af8ce70b672d2f07f945138eff24d9d8dab2f4cda42395_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1b1d1055f7c2fe909ad50f00380eaeadb750ad2c92fb6883700941703dde754e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:948cfa21c324a4ee8a6dee456f22cca589dce4cce3955388868ae7830eb8fa2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:f2076b51430cc6816a2a8a38acc240968237aa05cc33b488aabcbb62790867ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:15321111d08773607e32a82db18fd96c96968ccb56060a2d94923944a8041d65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:226684f964088b16f45eeb88c1c72b45b97fed5472450750842d5a94ae182123_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:398711da99f0be245b1d1c33dbdc072b94b9a9e0094394bd187ca8124433de38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:5d03de91f80ebdbbbe3de76bb524bbeb4bba1c7bfbfe6e9ef3061dd62eb545e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1b896572b17d855424baf18a1bb9e58c319f5498185baeaa040d979821e5bb79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:30105855d24dd4c3416e17eec9266e4caacbeeec9e36cc9e9ae1733af3002c6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:44b0d159389f0fdc0abf7023190d9308dee80fd68d5279e424d4babb8b8153c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:068d48bc63d566b84b2bd4e99d1519eec979146bf3847b2c876c4d5c53b58100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8fb377b359ff0abe7ab81ef61c2d39fefd7945027b0ef0ce79bc6730a3e37928_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:cd3ce0111d03ba2fdbfa000158117727c1ef5d42c64152488ff6996e8bcbe183_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:4d09bf9ae1384a717881bd8e9791d30462af842df9e4df1cf39c5a9e3f0aed98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ca042c7fcc0d046b98c239c109399f9bb786072075bffabcf391604f206d5671_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d8be6865a69585184a74d7b9d7e3c4295e9487d172f77688a084114b2330c21a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:fdc1cb7a13d9747a56df0cc706a2797f0d8b6820e30cbb9737d3466a6aa9f813_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:58c01f288f26e46a5db54b1720e908cd66874692f1481d3795761faddcade35b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:950c0af402e304851f7c911c49f85a186d37319d467ec94eb30264417a11ca53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:be1de44d356b34123bd72ac93501b1e3399bc0d7f454ab41dbf9ee1e891c5b6a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f01a16d58d5fd5a7366353330c82c4c1625bdeab98b04ac980c92dd3791cda2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:136e9192928dee3b2a2b650e2998257b604d2017d3d86534182c60a5c26ba725_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:49a7862803a48ea4919216a718153cda0d3e2cceb1e7b3191310067486aba6ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:6a9debd24c7c1f9fca5f0484d72737cb2c9c4f11800c3333fb5cb719e9fb68ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:e1682313c9cbd1f0760f99af61a39415395b073704d92bba97de50c136c6a9d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0001b49903cb0368b48a237271287e2b5579a7beb8c61efbae1f362699d8faf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:36282ae55143491dd562a82d206bc2e9ea8d4f5efefe3197451f1c539ad7f7f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:4a8fa6462de7c7ff3216ce4025473254651e3f8a11b973a23b67815d1b73d142_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d8fa72da4fc47e2db6b63a7a68edf8d552e5109f72560aadd414af976d23eca0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:5d92f3826eeea5fb284d232c0cb31510e46f2fce54db2b2619306e82d204cb16_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:631ef47a1169586cb737bfda8aef9597baeb44a938e7ddcab8e310c26a8678df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a7c7353f650032dca77642c03e019f51d03e0e53833cae3e4a8716e6aa5e3137_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f410d487f10ece94e49ad03aa9aa54b6584828b6635c5cd66278a069ed9a3f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:66247c4f0f00a63379797545da76f072b9d04d905c3490c1e6b06d2a47432586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:99045a0ec0103824cd7b15967ea1a24cbfa22895b8da40fe90cb7eb0b7c64db1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:c7c19ecdea825d8402fce7ee3f07f825a1209b1f0abb7d8b885bad4fa8e824c0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:d8e7283b76c170d28eaba53e376eeb606663cd514a2efb1097e435a2c6618bda_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8e7193f7c19de6f69e9e8bf1195ff7127f5b457c77982dc0ea82aa9654b41295_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:8fb8a008770a84e5773858aaa251d2b23af127a68baf5aa102b605731eb32f9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c88d4210daf86e56f8fe6a9e923664148e2a16a2eb3d9dbc03889c475f2ab12b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:c93d7dc23599ae79223b1cbd7dc62b63f6e6c9985d26b06bc6f3a692b8568096_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:03bae849f44c05a66cc12a3e7ec69cf462de8229a81790d0bbed26bf58fb7818_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:369f2e68a42db6bb9a7a9fe09ce1cfbd8cd0259152aff798c6dc3187c6932342_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:411b9cb7c1d396effcf80e85da91e0ba5df158214c97ea6fc7b88773ef5fdda2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:52df8f81e7dbe8760ccc4f802e996c078af59d30b43f8fb846924c2d8a8524b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:771b9045bebbe6d595a7b43af45cb23fec31ba8b426bb2bf2538ef3e71cd71d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:84d96f10dabfd6d3e58cd64b2df81b4e529d64309a8a2c68ca0d7783409c9082_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:4713871ce0ddc73dbbfe1d579c3d94d9075fa52c634b51f5d972ae9731994549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:eda0961b2797331cebf194a05ac642394b34ab65dadbffa8c3affc6bfbfe2a1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6b2bb2fa9cf85ff14f8ab121bb56e561ad5ad51d21e5f54395940e923d5067ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:80c62b74fdcc97a49b2d574bc03b30849ffcb7d616e4b2549ad0259c2b29ad9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:bbc22eb8e3c8b1a8b6e4c4c67a7de7029a663844b4a32d97ce4cb9409c6a7243_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6011021567e1b310f6fe5f0e5416eac0829cb573e35de172121a652563d28637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:6cad7b501d971d385c8ba32a6e3f0dc3dc9cdc8ef555b0f0cc520bb90dabab5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:9c623fd87f8beb75e2998a9f1aa6a1f4add460a2aeb9200206e3e7e481719612_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f16776ec75d1c98068c8e15523180e3b153e60aae643c6e971c3f106dd61dcb3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:256b9cdf5cd6f7e32a11f65f7534e1ca39a3fccb64d411c7e01dd6f5e600c237_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2df60a790d449041be77c83066368408cf3a62fd2cadc06fc1e3b2e3f9b074b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a1cc536befd8a5ff3721fefef114be3a771e5bc3e862baec096f187d3eac44c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:e472908acaa3abff6ae83312687ee22a6302d1385ae4f56700aa96b50cdde34b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a1a143d95357905e27c585da7330170cb37abdd2df796d9ee40254df33124938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:c41824e92b4311f735409b231983ed7e69400752527c7a0b9a5d86295743dfce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:e12ab95c40b730b22978b8347af251b1e45d9e0f78eac600eb512f544ee8b043_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f20e5378fed66eac4219322baa1c6a8afe929f63d9def922e0d904b398fa70e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:318a0790da610c038878f604984d2097fd343950c7a19be380c0eb93576ce149_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:4f1a52ec8422a2103eceff5faf897ea1de2a945e85cc5bc6c92db45d6e11ece7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5a36a4b8ee0617b0fc7a53dc73e1312c0ebd9f15e1b76df50f977edb0280e684_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:7d0ee426415366ae01e279d9d37910f512101d0ca3954fada90f7ef41c463623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c0a7a8aca0b9c4e91ac53aadae071314d6a767bcfb5609a4efdc669febc0ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:302d8765190f09765b6337353913bba111f3141b51b2cd6568ffa92ff4cd3e6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4c87d15448cd5a9f91cf4da7bab75a8ad7ff9c41d7a50593773790a2a033fd75_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:5892097dad581a64c8e719ab40779017ef76eaf9f26dd427f5a3a958526b8878_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:35529853993d22db0e171ead911ad6be43aad6fb7412ad60cc8780dd041eeac6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5d387d45ed0b6fd342086f33f1ccf62baa32242672fe1bb2e3d9edf1cd5d5357_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:75e9dfe6ade249647f22ace08fb6261bf010a5cbd649503dfd36022b0ac21947_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cbbe1259462471e34d2d457236b91870f658ad850e48a2916eecd79727e6063a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:04bbb72da799d3d6121078bbd86fcbbf04141aae2be700dba76edbabc3898cb4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2a6242ed76e5a16c639f3e9cc29ffa98c4dd38b1eeea2e98998a91a7bfcffbdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ad94418151b25cbf9cac34d024e453ce4a1da18a9a8a037c6cd501cc81be5141_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:ce77d59453ff13bc72e6aea66117e5df0e435bc5e483dd4b8dcfb480c92780e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:05c6827b78a5be71ae14dbd308cad44b474fd45396a0a275070615123845dc83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:17c1269701067a9a8f1d7ad7d6b12a5c0ad1de0910c184406d8420ef07f2e118_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:58be962c119c805a6a97b6aaa9c841eeeb02c9ea4d820ec6e5cb1ab925948289_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9f57e81d03517f434e21aa6167cbfcc2f7a069bac497faf0222a030a9d63ff84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:35a145bb29bfd1c31730b192dd4f5a2040c8204bd5618fa7d06d6aaaf931ad99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d7a2eeb4b4a3fcc4a228714db8a6fe9118bbe916b3179be4042b13fab587621b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:e21440158d43b96d2defd42f27e2945e612dd4554796b9d30fc052bfe2a43389_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbaaffebd6656688829b0a807bd1740076f2d6d8d5e3657aa300713e1791dc61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:2311e3a8e8adb67d8c72c0df1dc473d7202824938491b82285989bfb10a10ae0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:510fa5b2b426e01e06907deba9ea30bd177e596a3b18e2919f0ddff82843b4fb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:58e2a31b5b39a13cc91ef51600be97d3609f252a7f6a22bb55649445b8850777_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:dcb989aca5199e9197e5004cef42bd412b63d856d3c0fb23de188b9de32a3927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:04bc721c42c8ba150d61bb9d813105b7027ecd26c38928b471e05eb031af30ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:27535309ffe483bfdf73b76758f97b1f748b2d0ffeb0be91e67813ac492cd570_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:45f231114e1ddd0f7befba9cd252fc146db8a7a26c24947835ea5949202b9d60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:58facbe238eddd92b53099c9cc8c7419d1550d32e57759291c4cbca666c91d1f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:10ae223cd4364291504b88b702a86246162f08d3a69feb32d27b8c20d4859368_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:555e55dee776735a1748818ed0f20575fc0e8cd338d18919a75016a7abe88223_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:6a3c5941880c61d07e56f271355d31653096121c8afb5f1af7fc45d1c2cb35ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:88134f2123140f16553a9bdde1fcc4acad2d048308e8102871ed73d169f878c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:1c9cc47a78fa993f8d29142220fae37259c4179d8c414d63d64c8899da991e20_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3ecbd7aaa1c507fd2297c7c75b79ad6d090c4c6f618195ffa69b03936a483a73_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bde8fd80d02e817c6f166cedf305fde13f298b77bb1ef117cf6df594e9ef42ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d17a681769d66685a0b7494261b076ce4cd548bd63ea15632472ce11d250aeb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:4e1a179fbef4040805c8459e2b95ebe19ce0700588448a517a59a9cd53b729e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8d83af3f1b49df76b061185784f8fb09cdbe2a69227396aeae29acef430151b2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:937773e52fa27dc0955ca18864cdd92999f2c306844ac7370855bf0f733936bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:0d3bad3a2fdf0065c684f5230d70dcc8e409e8eac77c05ae3c96a2f0ef7691af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8020d174ca38de3e6fd043e88d9cc99bcff3f122213fcf7f3401109840e5f836_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:b1bdce7ab2da5d78661deb28655869c3ef5b465c84deaed87f1051a9ff80de46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:123945773bb359a072ced643524a5c2a7b3bdcf01f3dcd32c93e0871bdd1d069_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:197409a9cfd1994b720a409a5b533481224d936d8a497b2366a82a5ba89a825b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5386117e0836512e7d413236dd09fe0ceea6d8efb57086ac978122c9dc389f1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ca546246196b2ade2da766b82892c3646ee31b7b318227e12fff55587e7cf798_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a92d30f060e85a77974b727ad8b45d11db6bc1724cc4c8fcebbbea0c01b4ea59_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ce32166f81967cc551375285d9659c4511888a843e825165e53264bda6d29735_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:dbbd928683fdd68347e0a60bcebde2977290228a85dce4dd9c6e61ad3013185b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ee873d42877999d28e8cf0c9a2dd0193c9b925d96b804edb542e26596746113e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bd9845e0cf30d148957a7d8cfd5747f0e31a3153d226a54e18cd57f07ae2be6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:63f106ab0f9ea50868debd99cdb6d07c45b9137ca033862536c84da5f920b330_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:66eaac0c0a7fd7e753e7de3c7bb4d033bf2acc0f58e1cb6e1be7c6ae294109ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:792324d24c7d7cf0f9d5c912d32eba303e35f6dab71df1266c613f511a337f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2be624efb98b975b6fd44b71d9632ea17125dac2c5e960f4546d3ec967aa75c8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:7f419f3f95329b6631d0028c1c34bf87dae05458125c99032ccd9ef6d25a9817_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d47923944af7bc86e8941e3145f8999292ae0d10c12fd47b8642b19b8140dff6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d6ea27589420a9d3833141dec58ffd355cbfb5b3f4a644f1d9165d18de898f7f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4fd75386dace3f85123b9724904dc8699839fec011ba104f932a1c071511b0f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8a824e34e179ee9d31f7f04e8316f72e72386b0a5149acb29a86eaba4bfeeac7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:bc390567b04d943ced36774d0d23564a3ac548c7e65476511f565b3268e7e5f4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:f81893728b3145fd8cf3124c8322152a39a6a6dcecc22c5635f708d70d6441e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:29dc083a72ca8243e2cba74319507ef722b899d7d2adbb184e0f2a613685a7cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:33a37556677131e9053cd0acd67884aa7b0f1c4ea9755aa50890a90f5818f92c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6bd2c9cc84327f1150b503a960d4a39ee3cd89864e340b7adb6af23c515a7cea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ee976bb4134fb80bcb17727ab547c29804427b8f9c1befcd70afe303c9c3c9df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:920f7e62a7a32df527e8f68eda40d4c65ba960c194ea31a9398dcbf5325e1daa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:96d0b82bf59d09b8c8fc3ddc533d6c3f5d139d69f058f4171910ce57a8cef9c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de13ebfbaec81788cdbf0d24c4d83f33eecf6996bd4b81ab1a9d60d1925b64a1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:df25d8f43c3c350e69df77cfc30a3bd7305ed33640cf75c902bc6042d78119b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0d321b8b7557ac625caf6ad70ca1e67a1aaf7e32bcdf9ec3f11c13e19b87cfab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0e4133151f34a78b61b784f5460e598020d1b663bac2f2e4402eeb8c7f1de0e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:c81c37336178f676b92b8a64a9c37272cead0018d125ce49a393dddccf26f0f4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:761a7b01044002c74e7aba067e837355523f1a339969070c0d9d433595616e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:cac7f82c41b4c5d56b14a894f3d70cf6d73cea1568c7ae23b26bf4d76b1ff8be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ff31a74541ab7094f3fb99e1a1a27d232493ac192c11bd5695af3cd5ae68a315_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:17eaea4bbaa6e62c74c1c6827bbcc9d661c3874dad7b55e30da8f185d7adb9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:29a02a53341de32baa04c8397c101cf63dcc62fe367dddef2d5018f3b29e9e2d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:31007a47283330c6c3bb6e8763e787089e0b9baf35126f93b3933b1d0b5920cb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bddae57668d8dcb474d2a6a95e3e9351f8eae4a3333f4c886f8c53b34c956788_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:247705d66acef25f3b926e3022ec5d34ffd1bbaada1fffc67731c3616be5102b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2af3e438f911d3aa3d82692d18411b8fc56022bb7cf4baabb47545999001585b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:7f85ff091a0d8b06eccb238a2fd760ca3bca967884d68c1f4534d469f604d1ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c26c4d6ccaa5bd9ded34f8ee9bc1cd0582bf16ad32fe4d180e8185b3e873ecf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f16e995e21cd183002d86bafb210c819e42233171bb18efebe8755f6346719_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:515efa006e60800c5d490d5344f5a074c8ce2def306693f3173dc525f908b989_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:64ef93e2a8693f00a5583436646d8521c681541e6272d014aad859d667883f8e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e302e87bdb3a62e35e444b877890297fdfc72aab54c898702ca4f327368b94bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:04ed231913652135d55f7568625b24bdae36eecb758b626f67f924ca2e11f9c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:23705a6102622d9363b5a39fb5c6bf31c3211936068d07903ecf116e814a0fc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:bb901c64bf59bdd90c1f3ac0bb9db1e8dc7d52f55c6dea6912c0f7b0e1ce26d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d36cac43e30c5430ae4eb07ffd952069adb108e1f5d4b51471b3cd166a351de3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0b1448f15c83b047b688fa8f20c02198d8ee2d5493a1b16641289e464cb32f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2cac34759fa7f1896fa88f0805e862fa9ccb7ec3168344fcb2e2db79a3bfd301_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3b39a5c369ed72849f770b035799fc99b2483cc05ca138e34f244d68a133af8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:96e7ed5d6bb1591579a91f61a1c317c48aa777f3d443279247a3171cd6b8a3be_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:17861a1a45c4c5baa4f4045b01f1c85a73b3be00db2cc097dfc42a7994916e46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:51b605ad52f3f2e716c3cbe0f1b39657713ef1f908ec3fa96f6ef9bcd06929fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb8e6e6e5037265b1c27e2f3ae8cc2ba61cfe7e0ba4a3f658649b14eb3442226_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:5d8778a616e9a1f3bc076fb44ced78a06000af9c6c738355cd42065121e234ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:d35059c83a8d8eb8338e3443521228908e53a38b6d50b1d8f5680417e6c5a74c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:de20468c4b2b46a39243fbfb86c3c4d2bb9beedfb2293c669e90ff7dabb46a16_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:a9bce8dfa4a4cccec18a71c4e1ec59162728841e5e5ba364b84f3b06a0c53ee5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:b020a11975467bf1482857040560c3e2bf14e3506bdc512d134b73c6b968bf09_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:fc734a1d7408a04489958f6e4f8345fa5efe0a38a3a9807c21645446e2818667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:199e7cdad3067cd48ec455730a76b9e2c3b3e17a247189f09492a81ea6fce29a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:7e63391eeea9b22ff5767fad7523138aa7654a487e88dc52cd85de9ad180a404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:d4c540639f3f249336e783f05eceb9dc474c482bb5ec61a5e5600642eeb3313d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9b53af12f6a034797d30b2a2610bb1f2963565ede8b0eddd61c9c77a39298995_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:dfbb4e179c3cc1cdd5cb261debb181ee89e30aadf4220b2a1806c8712b5029ca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:f94931cd1c6340c3a752db577090f7676a1a09348135d412db4a805fc387fdc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:555200bcc71ee842a5589e5aeb0b933967fb694b3fe54c5837b827cf05dd520f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7657a1e6b3f7557e3b77bfd42a1861805bbf028627964e3994f7b4d2d8fa4510_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e8278626ff3a82564f4d86bcdfe97263dae18e8eb28d07c97ec75c0d4a151268_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b58690a76859d8c325cc305da2661ffc14fd802793f36e6fc6018d33ed8d1a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:608475d6a1981fc35e1044c1290f824d1f12c48d59a5297f08c0f0eac4e1c8fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:60bff9d3005602f993c6a48466baf5e11264e81d2d1f9ebe1afabfa78f9ff15f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:7fd04a3319f88a885f911af0952296156c89af754a8728c938baeb43fc32cf64_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2581bde4076e6e77ee31fa15dcf76678395af214d3983b3065cb36c2d64f9848_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5bd498ccf10bbf6231544850e5579c4efaa6dddc05d073b6c64626cc5c86ef73_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a0408eaec2a94d7294108fb5945c5170b9243dbf87c7a7e84ac8176935a840fa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:cd04021000a13912e0d674130f204c97c9299a65159001934f553fd35d947d3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:0b7f2a45c238f778a0af8ce70b672d2f07f945138eff24d9d8dab2f4cda42395_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1b1d1055f7c2fe909ad50f00380eaeadb750ad2c92fb6883700941703dde754e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:948cfa21c324a4ee8a6dee456f22cca589dce4cce3955388868ae7830eb8fa2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:f2076b51430cc6816a2a8a38acc240968237aa05cc33b488aabcbb62790867ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:15321111d08773607e32a82db18fd96c96968ccb56060a2d94923944a8041d65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:226684f964088b16f45eeb88c1c72b45b97fed5472450750842d5a94ae182123_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:398711da99f0be245b1d1c33dbdc072b94b9a9e0094394bd187ca8124433de38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:5d03de91f80ebdbbbe3de76bb524bbeb4bba1c7bfbfe6e9ef3061dd62eb545e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1b896572b17d855424baf18a1bb9e58c319f5498185baeaa040d979821e5bb79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:30105855d24dd4c3416e17eec9266e4caacbeeec9e36cc9e9ae1733af3002c6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:44b0d159389f0fdc0abf7023190d9308dee80fd68d5279e424d4babb8b8153c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:66ff80ec62c5ca9acde62ec1959636c0838a4c3f743fe7fa7ee16cfa73b68ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:857076af100a3a781a0febfa1b0405487d9b17f47ad3a87b054fe756db4cd1b1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:bb84169b6643d159427082b91c370b92f8a90f0005944ed3332b24b2ee9df69e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:068d48bc63d566b84b2bd4e99d1519eec979146bf3847b2c876c4d5c53b58100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8fb377b359ff0abe7ab81ef61c2d39fefd7945027b0ef0ce79bc6730a3e37928_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:cd3ce0111d03ba2fdbfa000158117727c1ef5d42c64152488ff6996e8bcbe183_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a69c5ff0bbc3cd76a9605c5cb560b3487998aac59dc64b7a89d34779d90642e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f365947e84704bf83d3bc2af04a2b7d95265be437e7be84529973ee6f67c02f7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:f7e916f6133ee42172aecb12682ff0f4c94c1325773a6d6c3fc2211d69f9750d_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
RHSA-2026:25187
Vulnerability from csaf_redhat - Published: 2026-06-16 12:19 - Updated: 2026-06-29 18:45A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64 | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64 | — |
Workaround
|
A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.21.20 is now available with updates to packages and images that fix several bugs and add enhancements.\n\n This release includes a security update for Red Hat OpenShift Container Platform 4.21.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container Platform 4.21.20. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHBA-2026:25185\n\nSpace precludes documenting all of the container images in this advisory. See the following Release Notes documentation, which will be updated shortly for this release, for details about these changes:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html/release_notes/",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:25187",
"url": "https://access.redhat.com/errata/RHSA-2026:25187"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35469",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_25187.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.21.20 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-29T18:45:27+00:00",
"generator": {
"date": "2026-06-29T18:45:27+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:25187",
"initial_release_date": "2026-06-16T12:19:48+00:00",
"revision_history": [
{
"date": "2026-06-16T12:19:48+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-16T12:21:27+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T18:45:27+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.21",
"product": {
"name": "Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.21::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-ui-rhel9@sha256%3Aa0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9\u0026tag=1781078461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3Aa9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780976406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1780975107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780974388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3Aa4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1780973889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3A311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1780973046"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780978847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780973171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Ad022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780974759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Aa362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780975201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780974302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780975885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1780973735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Aa149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780975917"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Ae538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780975724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ade2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780984729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780973669"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3Ad397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780984151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780976852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780977829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3Adc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1780973416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3A7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1780972964"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1780972993"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3A1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1780983917"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780974497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780974351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780972995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780978302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Ab375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780973949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780984130"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780976039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780984248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Aa977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780975205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780974977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Ae2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780974618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3Aa284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1781034963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1780973161"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Adaa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1781093321"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3Ad820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1780973034"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780973075"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780974516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Ad69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780972981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780977231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781078331"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780973308"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Af20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780978594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780973445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781086688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1781023907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780984236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780973230"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780973079"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Ab6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781078468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Aad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780975173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780974488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780975220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780976000"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780973727"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780984269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780976460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781087328"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Ae0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780983755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3Ae6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780984098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3Aec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1780976777"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Acafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780975900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780975884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1780984740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780978165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Addb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780978758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780978233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780974027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780978413"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3Ad6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1780973080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3A6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1780973251"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3Addc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1780973045"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3Ae03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1780973015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3A1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1780973018"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1781034977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1781034925"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1780973217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3Ab692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1780973044"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1780973062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Aec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780976604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3A1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1780972999"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780973967"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780989031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780981036"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Ad40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780982754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780973015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780984243"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Ac0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780980432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780975871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Ac767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780973645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780973559"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Aa14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780974065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780974883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780977653"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780972956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780996760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Abbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780978214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780976006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Af6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780984461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780976850"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780975737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Ae6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780984188"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780973769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780972940"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780972909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780984701"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780972913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780978030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780974248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780972898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Aedc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780973755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780996789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780974490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780974615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780974315"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Aec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780982093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780973145"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780973458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780973497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3Af3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780973541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Af132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780973453"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3Aba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1780973620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Ac7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1780973511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1780972986"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780985096"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1780974393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1780973028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780996750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780975839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780974641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Ace7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780986534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780981280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Accb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780973148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780972882"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Af0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780975158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780972964"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Ad0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780975789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3A484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1780972996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1780973066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Ade930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1780973459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780973077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Aa4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781093272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Adddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780996767"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3Ac703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780976258"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780973504"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Ae4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780984290"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Adc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780974775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780975393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Ada0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780976643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Ae043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781094759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-cloud-controller-manager-rhel9@sha256%3Afaa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9\u0026tag=1780972915"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-machine-controllers-rhel9@sha256%3A92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9\u0026tag=1780972921"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780982931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Afe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780984854"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780975932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Ad4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780979102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Afb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780974810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Ab24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780976491"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780975252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Aeeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780975646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3Abd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780976342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Ad3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780984972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3Ab50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1780972973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1780972918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1780972947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1780973445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Aee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780978039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780975717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781093267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3Af087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9\u0026tag=1780972930"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3Af087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9\u0026tag=1780972930"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3A9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator\u0026tag=1780972904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3A9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator\u0026tag=1780972904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cloud-controller-manager-rhel9@sha256%3Ac850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9\u0026tag=1780972888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cluster-api-controllers-rhel9@sha256%3A576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9\u0026tag=1780972998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Afdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780976429"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780973203"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780975033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780973436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780975904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780972878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780976901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-csi-driver-syncer-rhel9@sha256%3A71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9\u0026tag=1780972920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3Ad5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1780972901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-problem-detector-rhel9@sha256%3Af1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9\u0026tag=1780972919"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3Af83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780976406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1780975107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780974388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1780973889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3A6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1780973046"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3Acea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780978847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780973171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Aea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780974759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780975201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780974302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780975885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Adb5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1780973735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Aa1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780975917"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780975724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ad58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780984729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780973669"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780984151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Aa9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780976852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780977829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3A91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1780983917"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780974497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Ac8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780974351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780972995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780978302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Aea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780973949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780984130"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780976039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Afd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780984248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Aa0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780975205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Abef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780974977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Aceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780974618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3Ac522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1781034963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1780973161"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3A153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1781093321"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3A87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1780973034"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Aa633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780973075"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780974516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Aa3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780972981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780977231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781078331"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780973308"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780978594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Aafb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780973445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781086688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Ae796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1781023907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Ac0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780984236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780973230"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780973079"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781078468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780975173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780974488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780975220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780976000"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780973727"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780984269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780976460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781087328"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Aa9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780983755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780984098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1780976777"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780975900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780975884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Aa8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1780984740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Acb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780978165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780978758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3Ac726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780978233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Afac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780974027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780978413"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1780973080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3A6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1780973251"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3A7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1780973045"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1780973015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3A048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1780973018"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3Aea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1781034977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3Aa5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1781034925"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1780973217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1780973044"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1780973062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780976604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3A178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1780972999"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780973967"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780989031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Ae4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780981036"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780982754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780973015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780984243"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780980432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780975871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Ac9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780973645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Aa75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780973559"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780974065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Aa1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780974883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Aafe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780977653"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Aad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780972956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Aa2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780996760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Aca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780978214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780976006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Adff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780984461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3Af7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780976850"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780975737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780984188"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780973769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ab08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780972940"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780972909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780984701"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780972913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780978030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780974248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3Ac7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780972898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780973755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780996789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780974490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Ab4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780974615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Add05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780974315"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780982093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780973145"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780973458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780973497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780973541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780973453"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1780973028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780996750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780975839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Aad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780974641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Afe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780986534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780981280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780973148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780972882"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780975158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780972964"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780975789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3A7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1780972996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1780973066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Abca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1780973459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Abc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780973077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Ad4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781093272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780996767"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780976258"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Af14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780973504"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Ad071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780984290"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780974775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3Ad74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780975393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Ab51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780976643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781094759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780982931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780984854"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780975932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780979102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780974810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Aa8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780976491"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780975252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Afffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780975646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3Ab292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780976342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Ae860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780984972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780978039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780975717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781093267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Abf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780976429"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Ab6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780973203"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780975033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780973436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780975904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780972878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Aee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780976901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3A46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1780972901"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3Afc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780976406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1780975107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Afe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780974388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780978847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780973171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Ab0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780974759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780975201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780974302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780975885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Af5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1780973735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780975917"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780975724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ad5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780984729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Aafb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780973669"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3Ade8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780984151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Ae46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780976852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780977829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3Acaee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1780983917"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780974497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Ae0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780974351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780972995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780978302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780973949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780984130"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Ae837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780976039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780984248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780975205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Accb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780974977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780974618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780973075"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780974516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780972981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Ab75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780977231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781078331"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780973308"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780978594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780973445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Ac06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781086688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Af6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1781023907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Ac741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780984236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3Aca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780973230"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780973079"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781078468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Ac284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780975173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Acdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780974488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Aa7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780975220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780976000"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780973727"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780984269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780976460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Adae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781087328"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780983755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3Adc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780984098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3Aebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1780976777"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780975900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Aa324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780975884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Ab83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1780984740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Aedc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780989031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Ac90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780978165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Ab165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780978758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3Ad16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780978233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Ae807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780974027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Aa482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780978413"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780976604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780973967"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780981036"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780982754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Ae02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780973015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3Ab5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780984243"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780980432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3Acb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780975871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Aafe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780973645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780973559"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Ae59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780974065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Ae67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780974883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780977653"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780972956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780996760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780978214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Afbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780976006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Ac6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780984461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3Ab0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780976850"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780975737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780984188"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780973769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ac4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780972940"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780972909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Ac32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780984701"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780972913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780978030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780974248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3Adabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780972898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780973755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780996789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780974490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Afae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780974615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780974315"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Aeb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780982093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780973145"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1780973620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3A6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1780973511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1780972986"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Ae27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780985096"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1780974393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780996750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3Ad29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780975839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780974641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780986534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780981280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780973148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780972882"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780975158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780972964"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780975789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780973077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781093272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780996767"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780976258"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780973504"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780984290"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780974775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780975393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780976643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781094759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Ab8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780982931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780984854"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780975932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780979102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780974810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Af716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780976491"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Aaab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780975252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780975646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780976342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Ada2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780984972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780978039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Aa536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780975717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781093267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780976429"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780973203"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780975033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780973436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780975904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Ac347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780972878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Ab537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780976901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3A194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1780972901"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780976406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1780975107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Aef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780974388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780978847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780973171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Ad9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780974759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780975201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Ae632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780974302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780975885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Afa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1780973735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Af976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780975917"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Acf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780975724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Adb38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780984729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780973669"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780984151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780976852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3Af8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780977829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3Acd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1780973416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3Ade75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1780972964"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1780972993"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3Ad97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1780983917"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780974497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Adc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780974351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Af5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780972995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780978302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780973949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780984130"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780976039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Ae2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780984248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780975205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780974977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780974618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Ab77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780973075"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780974516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780972981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780977231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Af0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781078331"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Ad299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780973308"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Af9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780978594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780973445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781086688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1781023907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780984236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780973230"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780973079"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781078468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Af80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780975173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780974488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780975220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780976000"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780973727"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Acce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780984269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780976460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781087328"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780983755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780984098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1780976777"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Aabf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780975900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Aeb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780975884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Aacacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1780984740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Aec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780978165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780978758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780978233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Af4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780974027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780978413"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780976604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Ad90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780973967"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780989031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780981036"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780982754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Ad7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780973015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3Ab6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780984243"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780980432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780975871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780973645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780973559"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780974065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780974883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780977653"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Acb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780972956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780996760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780978214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780976006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780984461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780976850"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Ac71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780975737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780984188"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780973769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780972940"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ade89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780972909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Ae1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780984701"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Acd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780972913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780978030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780974248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780972898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780973755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Ac4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780996789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Afb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780974490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Af3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780974615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780974315"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Af07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780982093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780973145"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3Ac0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780973458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780973497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780973541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Aa6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780973453"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780985096"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Aaece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780996750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780975839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780974641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780986534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780981280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780973148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780972882"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Afbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780975158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780972964"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Aa70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780975789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Addc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1780973459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Af8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780973077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781093272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780996767"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780976258"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Acb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780973504"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780984290"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780974775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3Aeec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780975393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780976643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781094759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780982931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780984854"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780975932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Ac35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780979102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780974810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780976491"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780975252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780975646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780976342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780984972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1780972973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3Ac3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1780972918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1780972947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1780973445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780978039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780975717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781093267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Aaa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780976429"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780973203"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780975033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Ae04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780973436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780975904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780972878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Ae1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780976901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3A3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1780972901"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-16T12:19:48+00:00",
"details": "For OpenShift Container Platform 4.21 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:e2f30027fa1240272c8a472d6c77218ebc486bb966b6862c121187801a40163b\n\n (For s390x architecture)\n The image digest is sha256:84aafe31c3f70600df9b6466f6d1f758701c46ef306105af008964478a8e1431\n\n (For ppc64le architecture)\n The image digest is sha256:4ec235e09584bc41d185f7e16405d978ec943670de859260fde0ba150fc12fb0\n\n (For aarch64 architecture)\n The image digest is sha256:37b527aab81b3151268ea260005b088a7814bfbf55dd0e00cc1c23993bb14eaa\n\nAll OpenShift Container Platform 4.21 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25187"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-16T12:19:48+00:00",
"details": "For OpenShift Container Platform 4.21 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:e2f30027fa1240272c8a472d6c77218ebc486bb966b6862c121187801a40163b\n\n (For s390x architecture)\n The image digest is sha256:84aafe31c3f70600df9b6466f6d1f758701c46ef306105af008964478a8e1431\n\n (For ppc64le architecture)\n The image digest is sha256:4ec235e09584bc41d185f7e16405d978ec943670de859260fde0ba150fc12fb0\n\n (For aarch64 architecture)\n The image digest is sha256:37b527aab81b3151268ea260005b088a7814bfbf55dd0e00cc1c23993bb14eaa\n\nAll OpenShift Container Platform 4.21 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25187"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
},
{
"cve": "CVE-2026-35469",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-13T03:52:35+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457729"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service flaw affecting OpenShift Container Platform. An attacker with specific elevated cluster roles, such as those permitting pod port forwarding, execution, attachment, or node proxying, could exploit a vulnerability in the SPDY streaming code of Kubelet, CRI-O, and kube-apiserver, leading to unresponsiveness of these critical components.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "RHBZ#2457729",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457729"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35469",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35469"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469"
}
],
"release_date": "2026-04-13T23:59:59+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-16T12:19:48+00:00",
"details": "For OpenShift Container Platform 4.21 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:e2f30027fa1240272c8a472d6c77218ebc486bb966b6862c121187801a40163b\n\n (For s390x architecture)\n The image digest is sha256:84aafe31c3f70600df9b6466f6d1f758701c46ef306105af008964478a8e1431\n\n (For ppc64le architecture)\n The image digest is sha256:4ec235e09584bc41d185f7e16405d978ec943670de859260fde0ba150fc12fb0\n\n (For aarch64 architecture)\n The image digest is sha256:37b527aab81b3151268ea260005b088a7814bfbf55dd0e00cc1c23993bb14eaa\n\nAll OpenShift Container Platform 4.21 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25187"
},
{
"category": "workaround",
"details": "To mitigate this issue, review and restrict the assignment of Kubernetes cluster roles `pods/portforward (create)`, `pods/exec (create)`, `pods/attach (create)`, and `nodes/proxy (get/create)` to untrusted users or service accounts. Ensure that only authorized and necessary entities possess these permissions. Modifying RBAC policies can impact the functionality of applications and services that rely on these permissions; careful testing is recommended.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:1ba965de6e22af8eb220f1e3a56de2d7342005f9581e4fe7fefec3f0a0a5ad56_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:27f51875dcbe4429367a513d16a3e4f5ec8f77c60837492d101b6f8f8790bc5f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:43e607892220ee9a58bb37aac197aca1e66db3be4f9dfc64b94cd4a7acfec766_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:7579eaa2d7f9954230a4b0741fddb26f7ea7497cd6205532b24e5517ab2fb1bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:05549b91b74f6015b982253ad589adb77403376b90193dffe61f7bf609a6265c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:71089eb393c9f36937f05a19f1d1d56264932a02ca15c9fd7c8d27a20fa5f519_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ef3a9372576ff28347bd0581b3d5e66d27b4781db1696b3e992c8179cd87c616_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fe82d76594853f76a9f931a35af819b232b227ea94b1b7307383a309bc5f9df8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2e5f84c3744b175227d3eb4cd11a2148e9b2921bfff03bccf3f30e4e6620143a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:38b5ff6e2ad448193466e12ef597955bbe6ea0cbbaf129975144f6bcf084d667_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:671e451bfaf8601b7d93655bdd7125c55f84f11154563dbc8db434cac9b5c43d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cea72ebd4ee85e5f030194b424520fb1e7007efa39b44927196caaf472b8be05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:53595fa020e4f175c25dd3434ab46f3ae054556774902b19d3a671bb739b1a59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7df88065bbab0bb9b364a240e0f45ea0141b595b9515414d9dbf765163503e56_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8bf7a852bc76ea6d23cf0b0986ff4ea17812db94df26014df0f5b3df1d9a7f03_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ec04ccf491be631570b3a73826d4cd0d05aeb7fcb85e2bdaa2f52fcc33014a26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0be63bb7ce6ed04d0fc05ac6ce5eae5f57ff601f4c51a2e4234706bbd540a229_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1708039212a8c016bb15922743a2c41b5b002dd25a9950779c27c09aeb68ca46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b5c10e52c377c499c05eb93b4a975923b548b09e189b861ef56b7f6d62dffc5c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b6a4078afc408e742bc3bfee02ce641721d54f54ab5470081b1563bee471c4d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:3d59555dabefe7678b592277e40124db0d8413a50669f8b899437e828a9da2f6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:94339e1065fca70a52c798f760fcf762b64ffff1a90c57ae7d1176adb7138346_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:d397fd466cad63bac030b974f53d3d318aa677d89f3ac63b2cde027932cf4350_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:de8faebfbc4a6dfea3bdc036429241c9655634b3ebfc4dfd6e21cacf00acc5ed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4009da30313b5aaf7e1bdd699c8ea70aa7fb9f158361332acc0a563ee9a8ad3b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ad49ff7aa8b3fa90c431b9c03744da628df782544b2b5b63399b556c4f26e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:81f47c343f81ae1df64ee3f0e85bd15960e1b424ec0ca56e304aaaba769681f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9f1ce1b7481c9a9fe5d244de39fa7d86f218968e1834563b10389a4eeeb0cea7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:56b8f83cf40af54bedd8b19c100e8a9da7b81f0795fd20b74728acd0d3839f1f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:98ca6db1fb956caf88025691fdce8860f8b1b92308d5033577ff3c8e156a4627_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b375876c5a637e0ff0ef10c04595e93421426190d6a9649f97b8052f2a8b5124_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ea1893aba8e1955c7991a7bb3eeb219bc696ebd8eaf8bfa32059e3f6fef9446f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:1c6cad2289bfdf7fa4f582ac0db63db25ecde86dc5ad67a186624b0dcdbcbfbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:6dd2e59f57ed588152c4429780e8fc9e49a9b5faf29c29c2d02fd5d1e288ee98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:847e94ca13fa3436ceb92e786d665f58c05230256041a605f7d1a5143d1bc1bc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:95c53db2d5ba7b14b9f0c2b10b7a5ab832994e3e3cc3d8d55fe5984db39abc8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:265576192487485d718a3125e2e837a2c79c9d22bb3646d98ab90be1a86f282b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:6a1d33de389010f965ee54422e9e76a4038f3fe6fb4ed13c4240f5d58b2a9090_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:86d1edf48642eaa3066ec69f93ab2d0f6bffd872a6aeeeff10cd9e43a04d9cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d29fbd739917159271cf2824e35c715c4e600217ccb28d6efbcddea78d4c3574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:05dd28ecc261a550ec0358bd66a1821815654a6c85183aefd66952c749e33a24_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:58f67354b2a3168ed729f44716be4b9afa4b287f04945b7f2c924c4c7e98c2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:653fd099eb2c2d19f46801b17c69154997a6e70b7e82a24e5b6e96fe63c14615_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad37b924501f89529bba442a2dc8bb285f08ade3f0e4c3785c6115ac76b3d6da_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30a313f9e77de0f3a04f45ce39c9c76aed799c556c9e22459d178e8df6bb4461_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:379ed9826fbdfe7663c57d316ca74a85f4e5e66a83a3e2f558abb718bfd37b24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5d929728535778918c73add7c8ec858080f50182f01cd5d79b4f8aae86ab49b7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ccb2cd623189b25816f45e2b808b6e247a15f0e91e4c79d1536764175592e491_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3eb089ed03b7054b4e37fef4992c8792bc0e0c6610b33d5009c9be69ce9d6935_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:41fb073097c35f3e2d4617e868a3e8ab53b110488d894cfdfdd04b2ae6f91073_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:496f1fddfcaa57320e85b014d47d2350f433263e614b85f0fa9fdb28e6830b15_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:62d3358e84b22784032fcfd1f5de98dff325f88cad8511df8e8e5f5dfa80ea1c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4ff9098cd7c1080f15a42b746deb45ccde677f2a7af4a9473f9ebe65d305a03e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6a51ca883ec3a7f1996350c1184a2af85eb6438a4165cc89a33bb10c54637554_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:992c730f85a3f3eda0122282023e6346c78802050cb0571cd48f571abac081d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e043e516df40329ced0d058c97c91345d690e1ee3bfa952d80c79bae87f9e7b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:12252c21353276fb5ec2bd6297d0fcbeb3a1c4e90a19be589540ed0c4390b713_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:86c9fd9122b0d4dda7704c8b3be33f2bd8458b78551277095f90f50e3a747237_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c0bf13c45d0f7ce0ccf1d519b61fe08de1cfe57efba8db788cc6106829f31189_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c741a7c207f2d07c51fa17f88fb6242879a9e529261950579cfcdebf1b77c94c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5921308d2bad862612128f5d2dd1ddcc4b92343bab71252eeff8365286437772_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:638cda8782af6074f2dab70efbefc6439060a38b0d6fde1ef077189b856f14e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7daba78c395d122513690f7daceefc56b4e379ec15b25c8fbaef8b0645f41aac_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ee4641e35727fd91b5785927070e54910294ea3ad71ddae0a12b8d6bb1423fbf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4c2b7cc03c1800568df7be4c8fb627839eb3e1a5889c517807e4367d75ab5058_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:85c82d24666872a119b9f3d37c4a5bda80917e6f0680e1fa565bf90aeed37c58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ebb0270eb61887ea09842d911158241b26dac0f29db14cde8f228870f3a94737_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ec6e0b7c8026d4f54d828a7810a4f024b477bc95635ffad1af8fce73a51239b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1a0b4be6c5667d109f1b8c906eb812c7bc90d88592ec04e13c69e2872ec65366_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:a8f8f0bfbbecdf35f63403bad4ebdc6e8ab6516fcfc906588631f4e1840e94b4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acacd5b002a0dcc0de633713676c120fa333b72ffa0e12a24144e1370f6a1f56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b83e44540b8e94d6bbb4be16fa76c8ed99eb8b531e4bc3f5d08cccdbd5ca990d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06fe43b1a931e971cd30c9fef8db04cb1f25b980f0ad2ec1efbc89e3323feab0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c90fab8d9e687349f3fbf59c5bdc6415e4955deb97117152dcfd9f3510b4b63a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:cb45cc8e31006b3fb071a3ac4ccad4b48ea812826152edc1731eb0e63cdac812_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ec9df73a5688ddd091a3740ed2a39d163ef332d4ecc1771207fad9ca56d6ba85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:19566e645861b97d76552090219f55d9f0e926791bd6ecee26b63ac1e332ea97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:247001bb6c978f1186898b2ac76e41c45009bcec94c47d07065f67c580ca8c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b165cce7b313bb5f32684ea9d284160cecd61c70d1baa58f57693f209c866d7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ddb6df7d626ffd7855ea80538864836b983685f17681de201619d5e25c259516_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:39e8efee90483d8633a4dd50f4ec13578255fff0eb2d02963026e20f6be46fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4be610362ebb220d9fb438c1074d441563be25a9b9c36a22842203f29c9977b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c726bd422df685c7e0f508e33527322639c89c666380731c75f3da1f7399cda1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:d16c9d83c13c904bd662a25b7351cd33128f964c7ca17c42467aa20570fdd261_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0c0514b619e19beca0c9dce475581d660ad30b85cedd8dcae50ebbd08d2fc95_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8193538a6056b19b619bb28e7534ed671d678c304b91669dfe2be1a7cc29e725_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e807dd8947e081dba5195d67b33b60da308f5ecae8e1fc63f44964289477ad7c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4041dfbd9173429204918ab75143119880e9ccb9e33c06355199c4b5773572f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:fac53bf7ef8faca98112a7db20a2ca3a83ce27988e57a31247d0059f22161bf8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2aa1cec184f046c9629bba43f183d533adf13ead8de7e4b6bcfe3c1d16662912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:665544faca9d561ae133e3ac8bf6dabdb63ef78bf87bd4229b1c05a00b6bfb2c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:811a3ca55fae34518378a5de878466b0a5b451540a751686d7f8b0177d8d9bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:a482df7b8f62bed1b3015499d49f9640d272a78a7dc3243d305c3c504c47555d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5acd7a5508b11e6cd47e94cc86236bd847431c078ac2879f47553fe16f8626a2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:d6d811e5c099fb5c6f29877a31fd3100338bf53141e3821b046fbf1133876d1a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6514ba0d06f6e3dd55d5af3820bf630f0c9b406ecd9371f1722401b571e41395_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6ca32ec2bbab072cd606aa2ac75f397031b02afeff2c7d7f3a5afa7b30eee16f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:2ed0b60688551995b1a0f13fb15c866d851bbd75b8bfc3142a3677aab9f20764_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e03f16b7edae31d31e9f69b9c362c92aee23a6a3b7a0f1bc75730899b0059731_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7879256c7af8bab65cd522add7b7adbf13c3cf37915b195dec866af6cf3aa319_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ddc3761fe9ffd3a5359d90ff62594095932d441f318b3c8513524d6bbfe238e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:048af222eb1fe261c5239bfb7bc2f9c0fabff158a1f36795ef7ea04f78c0064f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:1e609203b560139eda376a9b99caa288f078955c2c3378e26e428b58185088ed_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8a6b8370d50f2b7847e74869aa9ea2fea008fb7dc11d310fb61e587eb2b964c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:ea133c0c14da034b03469b1b19202fbfe9f8348cdb1677bbed7d22d2572e5c3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92ac9c923140e97fd9aac51307774936b6b53c0ddd54c570249e6d9b37c6a424_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5f797a107823d5a23bc28e777d64dfad46e25b4e2564cc48c98d50612891d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b22a24b678fe6f9643a5351f9406eac3968d305bd6786196b047c591dba5551_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9e3bb61f16ff77a12c6495e58f2131a647157e7310aa6f00876fc6b0127024e3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:582e5c52950940870d7b2407d67d6c309a150610f18a6dc2eda524f50b54dd2d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:80c0876c6800986fb13d3f7b3fe6773a97e64ec3175511ed12399c96c7cfee9d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:4d10af80e95ba15631992e0b68549971fe6f384d3e6071dba44011bded5a8889_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b692752299fea9e227366fb41594fade2cd560a2b1760741cab9778ee7f54f8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:311f00a4a13b4bc48307c7c7f2028472aba0c77f172d02a4eeb944e1461c85d1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:6845caf7c0b556e342bf89213f7730e9791dc85eddcfef86df1ad0738f7524c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6c45ebe96d709f563d57fdffc7e64059d2f417aeda23046e36f319ae09fd72c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a4b42cd921d8d805278dfbc337128a72711c0fd839b7e042477a1a558ebf8bd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:178ef60913964b6662c8214aadda09574c07ef4240b760d0463bedebf16f0934_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:1d89ef805cfe386daa707d4e6a97a83bf91f461c216e229cfa0e8ebd6846301e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0d8417b212b607ce74eff9cd1cdbcfbb30ab969a71fef9c0145f6c745c540f01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5c812759525f33b5fd24a800297cb03c883ca98416f9b01d4338f32c0af0bcc5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9f6aa0f56ee89e104006612d4c5a66c6054d25ed57de74f1c636251b623211c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d90b17409f62e10f4d84f3cc7b80c55e7b3d8fef2f90cfad85fc2fc3ba878ce0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:36f7c603cf96b03b4f3d97a5f9858f3a3108acf3bb4e54ea8e2c8748c6499cdc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4e8f19ee0bd9632480cc0cf0b0bf2467f3932ef2767d0224ab751bf09e210fbe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:761657858ecc4576436226b2ee8e16b83c6b9c4687fe0c14fe575c2f337d1ed5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:edc1a83673359fa8e73c26acbcd7dd3c80800e6873c33517c76739ffb8de945e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0d743e2202207be1db8b6a70aa2f060c500f7131a5869cf71dc31b6d993bc8a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4760cd5f9ce3f49880edd3eba73ad6d0421122b070296c00c08afdccc137ab7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7365c5e1fba7af5ac76d64a32b9ca7a9050cb01f6622c740404e54d3f31c07e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:896e048bd10555da05d9f58aa1d320d55bcac674506670f93a1c541449f97c9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:514cb31156fd0100a5f6c3e67904d7ca5158d1b5ffec8bdbb3e051ff8dce96bd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8c862fd8a4835679fd505b9d0a8e3cb6c87bf1442298c8dcb89cd988a23095a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:91bcd29e507d3e8fb88d478059953ec8022069be53224e5ac1318a53a6f6612f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e4ce0837a1282afd2b208a138d7fd515b359782e74cd5ad5501f75d281949cb6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b0589a40d78f3570fcb2976f6e54c02967e65a69d80242e1b72ca8bfad68d339_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d022af899fa9087ff11577252d1221f4267d5b176ae2e87851e3eeedaf9c790a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d9100645d36b7c7a16bd51959a090e141ab77b6eb2a77e0ab355b008404b82ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ea43c29ff23ce007e734ba84738bcf0abb03c5bbea351f4609f368955c436e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3b2d69b29dfc6448803ed5a6b5eac0cb4b194e9eaf5725f703d34e649def0d3e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3c481c0264e57c7447aa7a719ee8da9c1d3533f1cd7705d47947327ae3e6499b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:520151d4604a3b2a10fe3e4415d4b8fa1434c440cbe0d7bb43c44cdda92cb03b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d40579aa08dd4b1af294eec1d0a6b64763a177813574a7ebb0786adeebb760bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:06a4bad675ec675cb95004919525dccb8c5b6e3c196a53a4a016297236c92a5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:07cc4ba24372e9a46f5794228c2c6190357a51acf7766608f9f69d9a5c7a2ee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:22fc0b911d88e41f5673173bd164e9851439745945da54d04049305bb6027101_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:556e23592473a1998f465662272caa438de802dbc0b61be579aea42df66ee5f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:51cf69c55822eedf76796c4852b2b9fe53ccb5267ec45e5d0125f3a671276db4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93781aab5b01d1096426cf6ba5a1da6df9dd84da90c1ed44069cc48bcf364496_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:d7312ef4fee34805b603f56bad5c9d68929ebed8407e495adfdcc8237c31540a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e02069c08e530535edf584c8eefbfa836f5048f8a95d3cbcda6d8f07b97755f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:55bf74843167cf63e91b02ed580da43d5cc08aa3bef76fc37183520eb35a5d8e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8b26d1d1fbf506fc339aead701e625701bba7696a30c243774f622956468166d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:92f5f1900f7019bb8417e7ec833eecf508589773809d384601a57e9107582612_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c0727cdb972abd98564b084717ba5affe26e6b9b101c2ff31220231dcdec552e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:00acc3a54ce654b9e1cb1b51ef9f164c2f48f3f259e2f66323d8e587990c4d8d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8cade67fab8ceaab4108dc77c374d452b1fecea4d48c92ec5a53d119e92c9232_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9b7db4a3aebca1157f97e05b6f0d51e8bdea4e1f8e51c63f6129ea3cd0915fbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:cb783c5e7ecbaae9c40813e0555d972dd6e3c0d0946084486e6d1d06de3cb68a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2169fe270fc7f252ee5070e0e679aeed9cc16979cc3f1d0b1df16f192f423528_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:afe2f77bb383052f3e35e3aeab91c505278f7848f8590fcaee40d853ee126ef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c767c5bcf0a3f966dc95168a9c71c7d17efbe4fd03ca85f8bbbafd493de3d76c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9735c061a7f7764dc79aee453a56183792fcdead26a7dd290ef60dce7666626_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a33fcf67cba0fdcd11f1d7314104319082d417612f33fd057b2f2aa01fc7199_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a9ef4427cc5f1203403e20822e5a66887556689d05a58bba44124d2afaaec314_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f83d4d1187460543ba9727188a66c9c6c30f68d67dd2076a39257a4f99b803a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fc608adcfa7b14f739722d4e3b40b1ab923bb73ee74a4ef154ce580763f2f0d5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0f479aad28b52532a2947a626eccb35a46d42b87dedb8a7ac73868d610acf828_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4afabb92f97357cce23f8d4fdd37b7c0d94ef466065f66e53a97e6b8ca58ead8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:59b76c381cf2f927bd3b5eb66d725862af5d7391c090fc821ac5c71c2c7d2b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:a75edc4e859947dd5a3a071d834a642f30b245abde4c3d80e5927a310ee8c01c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f190c2706f034dc3a890976ed6cd2c1d98446acaf1d4e25d38480dc0104bd49_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9058e65f769da6bba1866cd7472820c8bba5d092930df52040b28ba9bf31e808_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a14d2fd6a3e342966e30738306fa3863ae3cb6479cf0349531d22a2bfc1e9efe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e59a0df165f56b61963554bb6388a5defa50fafce40bc3c6e8c1db169ca421b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46b7061c5342bc892ca9801a2827c0111ab8d9caeeae9d5f8fc7fb5ab82837ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4c295b5d21534602e82fb5855f34c78723c63b98983d1149a21a8f71f19a01dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a1dd8ce7b732da781adb461330a3288dae42bc9d95cdab754989354202dd8052_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e67183739ce01ba51b9b1afc0685b9df1a3cb615b7c7774379c6393e383ab71e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4280482d0e3e7196b022c24c05ae3a7d15d961acfe47b34613db04bc67326e2b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cbf3254c70b2b9b2c11094f8a448d0c731b535f0a82c4243c6377f13f19aea5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7c22669f64f883fd85a77b03f6f24bcf0b6682da711fd491a87a06f8fed13c22_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:afe43c98c92cb85800d36e2a38a7a7d820eccc810c27036e0bb877ddae5733d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2ff8a233676425eadc3295abe88e6797e5c231ab10e645d47939124f0f2dbbc3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98dbc0b42e3c0869f5605067fad588d9ac00f07308f64e53a09ead1c7a3c6c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad99ffd2b9b3ebfcb526cf9c37ce0c43dfd7468e02d2f6bdde52167296f77dc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cb6d6d0a1d765ac0f54280d015ceb31f007e7d5cf183bb29a8cc8a25c6c3a0e9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:254c645870e25060136136c44a7b5de06ff32d4ac5dbc8401d17ea48dc57a7b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7d77dca4d439bf1c124a5db3b3c2d347d354ecec84cb2f697114153587522e83_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:956668e8e28ac8a902dfd0ffa0f7bb5cbcee76b30de0fef043452043e5d241c2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2b3c6e5758e266b3d9d2f1985ff784babc109fc22feb9eca253687e460c9402_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:035f0ad3c6457a96c8f26332eb438809aec7227ea25bbc30d3355a26504dd3b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:99c31e66bc000ececdd2831b23731d01df8d05f59dadc32f949591e26d7ab329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bbe9f75a2e72e9e5e805a5aa3d2a25ac3d3918b176de70642c888ddd19a83fe0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:ca8877c4ece04788e547a979d1cc4b7230ee7fa016892053ca343f74dcea874a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1bde43249d117aab7b211be6e8dad8a19640c6c398737cd96d8e2e93c45dc14f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:5104fe622bdd381cd95e9278075d0e3be0a51a861cc8d940b87f83983615a2ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9370943b3ceb64638844e58b01c114f313d51c091e514ad1225ead243cd84651_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:fbdf98ace0eff4354f80d6ec1616b882bf3d1e7cb57420943bd6e600052de0f6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:24bd2361f66307a35b4e88d66356f541df92ce663b920bc78107602ddb672bfb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c6b11f91cce2bf56fd5938344b88ddb1ff823082a03d82f626d911d6fa37e61a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dff52c98b5142ceab9ec176de9c8a58bf3d354f8e5d626e80511b8bab9a236c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f6bb9bf9cf91e4a700063a962c253052229265e0ebdae7174dcc443b2c825d8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3177fc3c4b3d275646f9518845bde8a1caeaf2e108aca4bfa5cec73fd393039a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3ee0d061aee037c8bc1d5cfb955d7adfa90daaeda92250ba92160d93241a00b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7f5bc6ae907d67e913d517f53b59926ec42b930a1f728dea677d61d4e2d42d8b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a362fe6fc0eb85a7c6f213d9bf4d4ecec36a7ee534f43af34af8eaa817b2e9f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:088677c422c706228f7a8850d7f20459c2e0eaea205a7e86eea13707a46456f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:649494a5f7c0871d2432b7a3047114697c2b597bf67ed446d0399bbf420e2570_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b0a44046e5e95ad251bd1a7d4d0f9179fce15f4709e39116a456ec161f7afca1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f7dced7a545098beaf2d3faa65ed7b2ff8d9010df2f4daf53abf4894bb344342_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:33232d4df356808733c7fd5429f6a85f41e3f0a4c067d62b5b6de43baba36d94_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:893c1734336bc2ab93400f6ae365479b32db37af6bbc64b9a7858c75c08a9928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9228ad8aca8bf3a04dd7c80d679a1081f210cd68170ba17b91bb1e3e8eaeb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c71af901628955f02f92f7d6ffea6236b951f0c8b6bafb1c2dfea20367a8e1ac_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0e7adac796f8c9d3e2eb9ac0695877230b7ece1cf150a29bdda2f5d414ed20c6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0f9cc6a0e6510ef0558fbd72d59a7ae6cd8ca54c890af67a2e83d5ebe8fd0ff2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:396ac9f5ffd28e0130b9e540e84640e74bb90f4659b1883c1530fdf5b461333f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6b377bc6577e96f06f86a7036b7d13ffd1580cd0b5464414cf55d9cc6297c35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:142cf22b7e69969d236c3ec4bd8b46e322e6752152d37a867da5a59027a924b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2475c9ec01bd05ea5e3bfe1edab1383b57c8d965fec99ddfcd40711d37223e89_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:4efccf990875bd7da78a735346f360f49c03b30367b19a07d680f16bb7ce70f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9d4f1c16642297b5e357731bf2a2b1c3a64de168449d04ee06a4e460ad5aa240_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5400a6c61489f951cb7297560894c50f834dd30002ae4b4cedfee736d9bc138a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5be44b1a028bc608b0e335a8e0adbf6885189a3722db83f8e4a520fe59710839_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b08d6fccfcdffe94f83225dbde32cb2315f2b0da6e666ff26ee4e3e5fca98381_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c4da9ee0e588b23ab65626fd8beb0ba9f681166e93e8c2895f7481a876c1edf6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:29dd11a9e6e7344676611823c362862070b2ebc080793514aa14178527bfa7f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:49fe0de0a1c3767d45db49f498900fd27ef85e068da2ac72e456383870edb264_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7428bfd90c2b6119f172e899439180ee233a68801f7465740bb757942e4dca71_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:de89199ac163c01c2ac8d6a9db9a007d5309d6230e20c8c74822ed760b833cfe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7422c20d8a96505c068c6259a39616a9b3e7137c986e201beabf9fee3d0fb605_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:93ad9424f195fd84d0b194a19b4c71596403ebf47d397963de42dba4509ec0a5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c32ff58a18607f57e74b6a56cf10eab089abc2722e3d34087462d28de37495f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e1f462d7aeded08bbb1b3b7e5207fad47cef04ff4a929f84f9a84d74c6e8a660_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:22b06512d88d171635e36979eeeb350e43afdb43549ebde0d260067dba525b4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2e18b7e1a7e67c4cff5e27d62c7de71968108b4366f8e30619fe6d277288dd63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:33d7d9ea4d04efa8c5bd55caceefa0d4615d094445a9d2b750223fde30def184_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e632c03fd1ea1fbf723bebdbee41ea15bf5e0cca091ea026cf54ace68374c9bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0e9bb6b8b95f82af3d14ff227577ebed8a9fdc57c187b2fe458b29560242a495_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:446ad5fd2c463651bfa7f773138a087221796faabdfc7905e719c4e83bd2be6a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7db1e6f8bff8e952a64f94334218d48969a22f61f386d86491fd48ad7ee0f97d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:81f833a8ac1a6ad01c960bc2273b99f216a06ff44e5d99606e6f858c5962ec3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4a98f5c2bedd2bb3f3b25adde2b03677bf7a3787c312b88a621272f9df13bcbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:db5e4ac090e8e6ece49700a80578a3b7c1b4fbeb92ab7ec3d8b28672a6acfd4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f5ccf26f876bc78fbd19194cf54f9878472845f56206c8ded828129d447aa785_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fa7901ae56518f24d30756756aa8ef34d7b93d45e39a0012ad41d1c41b695e96_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ded825cdcdfd675c1557bfacfd67e30effe5d3cb53f0a252a6a6c920f85f522_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:41e1cbadc2ade08ac8b5450a926561ece61a65c304da339407c0b975fca97c15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:57f2c8f2123a722039ad0ab8314fd8e260c0c7dd4cbe2e7bd2a4b842acc629d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:cd22fe4713562624678b14fba4f450560dca53b647df594012b03af7d243ab05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:278f87e90924d8dce60f1d27f5ff12009be7825763a5e14bf45f3a49531fe328_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:419a905e191965452ee8cc8179eaa82a58617f35adb7f12ad4089a6fb37bf8b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:46678d7b6dc3dc9e5293b515acfd1baa70c1af16adbcd433c0c193091a149cde_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4a1b4c560226e9ee5bbf70c6a4b8aa7f05e2113ac8e0c2c2d867fc3a4905b175_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:09bf9f8f2bd17324d5ab9617fc705d92f8803298bb11bc4bc8d24d1656575d5f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2219fca389bde2b7dd5a878f69d7bbf3185be191dc2f172d4a08abd5a26c65f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e766c86003dc860d4591b909a82a1cbd63b382ffaabb382e83308aa6e1873cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:704278bcf964b88887ce7cba14a360d5af4f59b2075a4f402589aa960e7aa201_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:62ceb3eda72cef595de30027acc245808f7d7cc6537b0ecc1c3458ae1c0f1be4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a1232346a4e842de485b7ac834d1b422f11bb82b72d26ee692732a3e374e69d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a149cd000f3d94546653981eb0ef67f8b7d625156cd70c7a3c63763cdd59cdce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:f976e54e710bd9b5a675742d072e3ce81ad48f004726a36da5c4587d0c7d5b9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4cd91d2f0e56a7e3484ad8718845f9747c94180b0ee975fb62ffc75df214577b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5082d793ea964027fe4313ecd694ff44631696a37146eda4656441f123919c48_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c7a790ad3929ae5a3bd516492fdfed2ff0914e2722849648682982c9326cfc7a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:dabf4660599446d0ae659e7ceba9b1decafcce26e86c64f258d86592324e346d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0de50b256c531acbb98f06fdd4c5aab908875cf9bbff9bc4e9b5f4c55cb8616f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7c8d626d931e7187d2059f50da3c2ec22db4d55969365eb6e3cb71f38861216c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:cf45b22f2cdb9fd241358a538fb0e43a0d72f3fd9fe9e6b5509fe7bb959e9e8e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e538b1aa96a9e8e5edcf4245270fb313ead3e30f9aedca8497af330f9d9689ef_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:340831097d1408bec9ffbbdba6ce08edb4016b9cb886c42857c5448723d4a3f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:71e924f1723a58b557fa28c299f9aa59737e5047d5fb4603d8986a3cd695bcc6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9a377af018d5e4a79cf1a386b7bf58a30341e3828c4b70c3816fa683de8bd68c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:edc4eab2b5a666156fee3e971aebbf196d5a3da9a967e2af1eb2bc91d8a173e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d58628ce0945b5c4b8e18032f08c9e472f685380139703b491001befb9d8bdbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d5e91151214eeb86580d2a76c17865a2a64f409deb4d605b4b7f1bb1c67eb030_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:db38cbeab39e0d55f0e542116f84c670bc7b643c59b619625d79cb1a1d65fa41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:de2df70a9ff14202ba416a7135ce7400f9f6408b20c38bc1e46d70f85707c259_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:234aef01f6cece65c2d58df4bea86b697b9c96a983771af3bdb94377db8e8868_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:77c44e50b086fddaf8ad3caf6e4ee6e7af07230dd7f3311b46fa5c15660035b8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:7b72b8fb9455e079ec251d7a9ec7f538e6b797e463e0bb978faeca01b37ea677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:afb02c805b24f2961ed8739f1af17c5b58557aa10b1319b4b2ce13c8f9d4a19e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:85c72c3f2eb1672a15ced1fb47cb3e0fbcdd5fa01e2cb6f218f54a18356d5a10_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ad2768f4eed20ecddef9652e72c2536a9c5a129a733ccb8c423b8421b1d047bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c284aaa47ccf20a45f6d5aa163d15e43dfa0b50b1ffbf82d655b79583768147b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f80ec12f6f1570a876df410c386f5db69840ae193a7d8309900207e133985372_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:1073a3e1e344dcf29b1bf482344d3d2fb3725e908a660d9f468cab71bc134d85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ca92e40d4d0527913d10f314b74e7ac92959f00731d16c5e580391d73c0b192_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:84658f55af70d916edb3eb99610087b3356a0f6aa6c95c0c913d1d44c883fdd9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b6b5cdf669dba67a5f855b870f4a356e56de5a26c1c68f4491fc470232efd9f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:6ff37eb9d9000a52fdeb2ef958f711bc609165af180e6f6ff3587b4f808496ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:930cf6edb2da5bef5b84a34d0ef5ff3351115b04fa9a8f846028d96a691d567a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:97b7f9c8d69dd781d2b3bcec0e2f2a8e53f0f2bf39a56ddaecf3d97efe94b8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c4400754caddcbcaeffeee37ce8e4fe12ba6213a3a424a57483b5b683b88a242_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:09a5c4485fc3e3e9dc0f2440b49d16fdd62874678c16b8bbfcbdf7737b8e5a25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0d4670da10463670c429378c06d1a77289eada6107e5f527862e3ccaab20f482_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a9db57cb719bcdd78b373b8996f12c843dd3706decdabdc01464b20a2368cdbb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e46678ecde8f0143574da6ae5c7d1b32ee0dc1b814d4a07587ad86848568afa7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7ff06d3c159cae9c2ef259c63ea06c916cfdb194908d0baf129f59193db96f29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:de75e27da775493434c599c33d77efe9482e124bd60bad3fe2d27db19a7d4782_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cd1dfeeb160839e6e599ffabaddef7519b336f6bb8554ec7f699ec659459032f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:dc4a165afe97885fc5d4b0f4290661cd3a19337b121791063af8a6855e1751b5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:3897102cb8e1e22688640c051ced7c55d45b5124cea72588d2628c63a42064a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9c0eed449b1a2cba4d45368062da1459562c26c787dddde79bd6575c9474eff5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:360a5e6303ae3a94b39cb1e5aff2f3453ea6f6e60cdd73f3204a2107016372af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:657ec30704cf1ae4772d19171b8f4e10cc97ea1271b9121dcd8b3772dfdb5869_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7d85ec0901f0ffe6cb60ae39fb2eb895a542f4415ce6e18764f3201b72094800_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f8cadb8e474cd936bc6f53dc7c182cf13f9c167d9337795f872f977fdc371ce6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:32036bca91bb643ac833a21233874d90d0be72ea40d9a53455074c01e4fd7f46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6bad15967677fe0998eff4fb5affc789e3d67ebf89826636a66086854f8def8c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:91c7b294f7e80b23353226da079be9446c0600d5e04ef71b70c56a089c208454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f5d3286160608ec5293e13a17119f4b77cd8f8131c49f141b1434a161038f8bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39bcce8169af3a8fad5fd03ee4e978842add5af491ae8bd033fcb15a5c3d83ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6803b155e68af52f08cec0bb76450cc46cf0bd0ea887f608284b2e6ec5c18d34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:997ef1239e6582aa9347293fdb9182c65b0e9d32513b5d739fb50866cfdb0b29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb861eae8946c0ab862ff464ff4e0ac71d63ce23cb4abaeaf9b415237416c4d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1dc37d9818d8bcc991d4ba5d400543b493c4e75b622b3644f611233f5960353a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:91f5cd89edfbc51e297b40405e42ffd1de7fc97213721729953006b720b2b2cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:caee32d674e6ca475d1e695af120ccc01290bfeab38d345ce8d63a8164faf9e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:d97a31cbe766dfc198c42b1930b2bf269b088ecdf5a0140779c6dcbb37af6d56_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:731f246312d2df2f1bf249c9c0c4530e59e71a40dabc8085abdbead7f5839db1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b4b0944065c7272a22d9119ec9b58908eb929289ee2944ded33abdd65e6ef6a4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f3e3bc6e5181cf5266dada5a5bbb4cd4e15f10dab8359dd8e2ef0f7c6804c910_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fae192385fc295c6c4ac3f3b84a056b9e4efdabbdf3d462e049eb9ca2c538b0a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:0ec84c1ff3cc519a88983126502b5259b81eeb23a81b7e8f14ad67905c8f2ece_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:30430c00603f23cc1a1a1fc02b4585c7a0d461129bb306151bed748df35b19b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3452146687de80958c3e261cb16421b67cc77ada049d3b0579c66250a5887eb8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:41f82ada3ac82e17c35c69cf327ddf14364d2c39b7cba2507541c9cc0636af27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5ca2ec2c86d1bb9ae617ec423465cac83fd0a45a43cf7daf10e59abe7a40b7e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c8a8831c5b7df79f3b7f494a165bb5929e9a08166f9ca979d7a59e98e6287902_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:dc3decd1369a23b657ec26b19a781f1b878679f2d917babc12f3fd45e2b2bcf8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0997223be0e531eb283e780162a428bb9712ea8ca0b079f09ab697e1dfbded5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0406eacb916c7b675713127e3df3c30d00ef08cfbf36e071e3f068535f481125_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6131576e3b082f216d6d36dcf1b37c7866aa140c04759eb0b228c7a581230636_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9673d8b8a9e974988bb0ef953e087af2266a8809cbc77fdf41ddf962e1d8dfca_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:dd05469c8fcc35ed6fd215e4c10d7a3b4c86108b8f71465323e18560b64ea614_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:469ef2b5c9ff200b7f632493b6c2ee991d9b400dcfcb190d2b5258a3465edd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6c9e2c5145c77df7e2ff0dfff31970db958171aa06f6bd8d41b3d2a1d0e186cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9744fc99f49777b444ace2a1fc5f7c4fcee703e87494b92f7664d0ae121d1878_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cdd6128215017c17125601a48407e2d96bf93f90a5f94176150bc22c2913536a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2ec41f03184f764e8cd71ecbd7d8395ed0e08ee45d79c072d5c44e2dff688bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5db0f3578d584c3aacb83f18baf2f49f6292427d467c832cc82fb96557670c1c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:982c324861ff38689ef641e10d99324c61a5cc40e277097e70a32868d25e9bc4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ca9b2ae2586a477d8cf91f80e6e8aaa315c43a9ffa9e2aa40c970b5c4fb9f8d2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1c69bdd0bb4eb3b68a672182e54f34b7f75c196d6cf31ea5dfba56f032d50223_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6248a6c2a8a98aea270d3e10812717e99bc2040b1919dee16b40cb848dfa625e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:769a13b88ac0947ae0d77a07074af4b56d609034fca540534954ad2e8711dacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8d7eb72aaf1c1afe89d1d94dc7c902ff8a3bfd3c593fee24d53ddd5a2c45d4fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75403bd8f64fe089f20aeb6fd09c216295e0d0277ebdbf448e5df97b7c914d09_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:eb5a5e7c2f9f2b88fd991cba4a8aca0d5604bc14c7e805bbefd31d15669a5a9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec3299eab8324fd03a7233b703234fbfe08215e789f20290485ad24fe26f95f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f07f7716da5b482c3c0f745fc6e163e563dcd96dc3d2099eeec69eab7521786d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:24a14b6fd6613bd5a42768fcacb68a0a33f340c88741391fa77e15dc7271d664_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:93170678bd731f242634100d03a2043a781feac4c32ca027fdc9ca893d408859_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c0eac1e2836a5280b2f454a7821f5e9fd39777c1781c1c54d7d4bf506039b188_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:06a5f123115462654aeffc9536f09bc67aff12050eb07dd57d2d628c05dfd5cb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:2abf94a2df30ff222b7e69f4ab960c5d99916ebd35c3a6d8b2dbc6f273d489aa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:559f9db685e39c0aad2cbaabb6b38182129dcd608b10518eee84968ee1462520_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32d970fec7403d0bb36a096056c7c19e5617f2bc64079912a2df1567edd615d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a6c27347b60d87ec37b6c5636c9d7ed65d7563f645390e24c84a98d0fde4a12a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f132c3e3c7a99dc9e20fbde4d08c83fd216ff5879d2d01ab0a8c5f6290498bac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2715b50f4d111acd70dad75b008b12b2a7d7a22a154ef68ff956f6932b99cff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:41ac71f3b135ed8b3de0c07762371fb0ad36d8b55087f3d3da36a7ae40dee091_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f3e9bffa469114d6bee87a6190259c727da50ede515668b6ae75a8a2a3355590_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4721b7602b7c9286b52e750291e4aa280092a657a529d2cfddfdd9b2574c9327_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:55327c19da4238278de7acfe336d42a5d91db27a744deecd6d683715c583bacb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:702f9a72f5967d2ab028811ff9a9b6b43a62956b96270ac7d605db8e0431b792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:93b89a2793abec900171c288f9e74379ff482059b5021e70a8b29a5146537718_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:066618ac1e6ab08a6f7fac6435050d0b56505e235095a2a66187dc676c1e05d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:0804679b72e520d439d01d48777d73896bb13a9d94eedd2e3561d40c047c587d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9d731772dddbf3aa471707f451d52879389251a8beecdb262aa874e0945e3510_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a7da187f664b4d18bf130efe03e7217db71b2c22eac32e7b1b9a8cf2bcf817fe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:020cd88fb78dce704b4f754e9195aa3030ac60fc79da428c2b663e9df4362ab3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:38c593edfaa34e89a6f8323612b22132281e159e868d247b4f1c7c65e4e78b55_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72cf337266fbac0f7ddb6f0ac98ad1cd2ba54c4cca38344c0b864b0d98aff50d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:98b2a87406a7387667a22f3a995d3bc8fa2ce9404f1142ebda2647e1325fd31c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0c407ff6b8e4487f3ab6d267f5e246fc692c1aa154795e8f547814792e04e4f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2662d755d4dd57b6562d033cf4fdcb092697bffc8e037a22fed63187d2e3b739_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ceb91b9d8407702ac51dd43fadb8e05b23fe05639fc08b76896c3f4a6e4953fe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e2f3681e052f711b6c064657771c7be246be411cb7f5d8965ac3ee8fd96c84ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:42392a83da81cb097b9d4198b3d356132f68d082e48b2117bb0ec6867ed5cb4f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:ba623669e6e493ae06908ad9c82684854de8e13191dd0c53766f5ff6938d909c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:49a2d0e2ca5011ea170c3b767e67dbd7d87ecff5eba40cf447d2760f0f0d97a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:59bb2dc02e6bb2ae6484542fc71147ccb67b2cd492dff81113a182bbea6fbe24_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6b56a15dad3926916f5340cdc7dac6db54d3a614b3c0cf019f3f3cb00083a1ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c7114b103596ef0ba783077c1ef2e87bc246ccd659ac737c3eb1de5a75ea54f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:28349d1d963876254a4c334fee6b5245b8d5f0a2836162dd32e59d6137924341_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4d5d3cbad9f26fe78f28edf8cf64a45af42181b9aeaf5e90645205f7632dc6ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e27ee774571b7528f4d7bde4998ab3f9acbe5b21e43bc4649db90d7f8bc74603_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:337d5cbefea0539c10a744a3299727a369ef1a4816d5f22b2da41cd6b95a38de_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:65ce11be4c6c15f16ece82b7525b47e2dcec23b7c45cbff0ab502e891794923d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:46443454eb6f67e7c1cdb66cecac90eb7fb9c896983908bed5068fb147cf5a85_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:7f06c1f6d59271e1525dfa800702abe9686f5f3fd175471a63339704c762d25a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1110f6e8d66ba68224f9a7eedf1baa54de2d0c58332f611862242fe8ff311295_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5fa62a2c96e670f66f2b93bf5bd088a7e177e08c9ed802cb5473d8c367afc113_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8ae5c359545277a0281372dc8e90232596f6786bbad15b3f24f057de0320e5d9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aece9c267634b11f62f20318e830749b95573d4d0d66c1cfdae838b9536d121a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:037abea4fdc140cb3e135b61be29ab4efa6782b648013227f120fb561b41426c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:37d34f2ca548c49179b1775133e3f3fbddb7c8133b198e534f133c9e688d8796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:3eeab0f24878e570caee483df341adb0e05b7b8646c383f32b46da13bdcd4257_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:41e74237c12d9fd458f5ddeee13dc9dce700b3712e8fbc9b2b07d9b866d7734d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:20291c96a3fe76f18864b47204b4cdb68feb581062598b956b674b446efea1be_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:4907cfb2d1854de790ded3510770a0fbf0a213a93fa95aa13345b39c9f22114b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ce7f3d8fa7b844ca5dbc2bf4d3808c99b193d07e13c6ae74d94579ea786abde5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fe814703e0f8cedb5aaca767192274260bb402096b619e655042dc8a47226359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6f88f06adf197d7c2d093149be777d4a253946098900cda2da72ac13e835a2da_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:824040ee8f1c92a13e65d5640721449c5987c97877e5d0d9fce67e749037613d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:153d3f940a7146d638782247f5eeb7753e98ab58e85ec1b99b6174cff4a623e8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:daa0ff1a9a2f3ccf5bad009dd6532b49f546b67bcbaa92868122c737066df4cf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a284a4cd0b47336ad6a16bbc277058e5b4a75068c3c5734bbd35392f7a1b0ca0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c522a27ed2db712d005afc268c05b736f9b93883ddf6ebd072d265970397ed8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:87cdf9b719e300b23e802e363983f268eaaeeb6d3fb61d4ccf1ca470b23dd06a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d820a03d090f8b7109517e9225c52aa44292349bb2ddf021f58e69ea57227f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:01804961d11828f99cb6952195d55515cd8d1726843338c7b544a567336b9a6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3f499da4007a4e2a4757daa35ff52a8b2908c5737d48064cefbf257283993dd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:53ae9b0c3257e1c3e65175f4ab8984e3e69a8a130e57cbeb4feb3a4b93615563_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8722efaf8d41a9c00a5b03dfd788c9592b92cc6651eb4c6850f3c4d4fd8e6c18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0cb798b8bc388a74e06373569a70cac2f9a3b6074e51c8bbf2c6ec0129598a29_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:78286f152d4a6e7dbc284f807c1212753878737f9ec12a9cd75f4e0386c9177b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a633e4e080263b0d48d10869fcb0ec99b0cbe5bc736e1e53092468898ab41a6d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:b77e33c06e0d0b41e8eb7bce5abcd1497dde1bba6cd491bbaaab05660a97bc6d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0cb71fabdd9fd54fb00003c6e4d39c9d89952d6286eaf7944fdd1bec94434a40_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:131710c3aea54aad24a83c7021f2ee03cc4d91bd96ad862d134cce858033abd6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:742a331d6cffa6fa5d366ab9d11eb2fc75dffc7cdc5759fb6a047fb50f60ca30_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9e389416ca8d96425849a354b38155474e8b66ebebb48d299e3d14b4c5d3e3de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:33982a80ae6bf4b70353cc341fe980be51c6f8448742e5abd090719f62515c59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9a6d71ee306c4279f019a0358103cf772457ea8659d15008f2f7f0544fcd1646_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:a3b06fa243bee988ef779191c5daf691c1ca8964a2164310ac93f3280dc5adef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d69fdb4df0385545fea609e6665de6c4b6dd4763b73a35a9d49456f879987925_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:27c40f727d218b6e72222102a5823c4dfe55d32cb1ffd30411afa8c91a9811a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6d70801878aecc222a0d40918d5bf8622238d7a8b3f2f18c0fc496e384c8ca57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:84113d4695be785283aacfc42fb9905bb7cd9233c4157f7d09726e641ea0d648_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8555b5fde6ca45d30eedf1d4906b5419eaffed039ab6662ec268e28784520318_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7c92bdf15e2acb293d66e74f1cec34894abd25756db844adb10bd01a83fb9a3f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:946b71b456267896366ad47a414b99a4cf22895aa4b4ca438bb485187ecb6793_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f0bbdc89e43b7dee4db41cef1b7bdafbd61c584b7156693a75f993a1a25ba4d2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:fbb25ad1b5cd8297ae7d22cb241f570f1c7ab19664b48a2f4d8922589ec2f792_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:484aa20f4f3c058c02098a6b7aa3a6e5aa97973730d5ba4148c58e8a6201bb82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7c852852eb2153ba4bbcda378a03bbb6f7dbf5247d17052e5f2d36f162c84bea_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:405985bf471c78511d44b9dee0972bdddf382ec19ceaf6995cab8cdfba1d7c57_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4785f4b6e241f425c6ebc8f8a66e0f328dc7086187603d8724fb9421c54ab2a4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bca8f7f458aa09382730974689377fc2c092464c03a482083607469e3c0d4b9a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ddc4e32275b104874d250529dc1ef80bb62f5308c76eaaf8a7793399209c70b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:de930c2f77f275a59503d39d25bffb45d2983f1ed5c17da0e728dd9d49114f99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0c24ad20ba8d7f031db3b4c92e961864a6eea2d5f924100a1ec359d6db2c9e81_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3dd2888e926a3ff83fbab019250e0724e803108bb26439fbe50124d29820f133_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:bc293ddc5bcab2b521e84924ed44f8d2bfbab9852a02e86e65d77b5e3944c75c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f8e19ca288faf1eeb12b31d4864629b4a2c160eaedc16349d212fea1bd8e6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:065ba13f86ef87028a0e78f998bada4b47571ab16a76ef3c177a20b75be3c205_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1eaedfb21817a188a59ab91f00a9a3833470040f55b6b1858844172e58609110_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a70ed13c5fffe334c09409c9439fc389e43e5b622576e70dbf320a6251081f5d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0e9572801b54e7993188803a4429278699da34a81f072da5303de947eecb4e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:309f1d27aaaca39facfb97a48fce57893ab625633a7db2a3e0dc9511b4fed398_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3276c84fa7f61d259fd7a1b1396cd3061927e0c02c34bb5af97358e1228db1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a4da1a5e3d53bad01b82890b724567550b8dd28972952bd1f50dfe5b0e2aad4b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d4bde327ccf91319a2f8c2708054ddee6bbc42c1f5cebedd62a25b52e8844218_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:135e95e9f08716d3e872f53cbc6d89abf84a92967622f10dbd80dd9a85b86c5e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5cc2feecef56faf0c214c8b6a59b5ed3546a01447bbd2736f055d39e07b04e95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9dd60aafb232c4c387ea1643fe2d9d05a0d3b0ec27206a7c08b5a94739649725_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dddb62a9c562392f4a7372b67a897663984eb763f9c29c1fffe1de2e72a175b6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6e59f8df20a74c88a0525e6a24601258064a9f0c24505427f1dd286a11b2fa6a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:8bc220efd04430174ff31f362cdfc81244e6e95bbea759ceb0b95261fcee7710_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:96dc76719c78a7fe28066a075d69355f909c6018c8118d2154d5206ff9fe8f1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f0d740d21f103a2081d92c565a7da849948103adbdec9f6211a2b282f0a68294_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:187d80d8038826eeea43f47fd8b70f175a16c05277c95e5ce856f6cb4a9a0d67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2e56978a50bf57eca4c20265a25356171800344bd2e5f6c6cff3d6ec9d35acbe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:43e52d6c0f9cd1e602d82b845c1c7fb038674be682505618462f27be67562d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c703592030a7d4211ba420655cb0a977338f0dc65a5edc2d1a2e657ec731d2dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:034de7d211ff7b9a3531251e45bac9f1702b5e81ff7554b5ee95f6ad9beec087_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9bd00ad86df442c9e828caf029f52ff1964f9a1cf434533819883ad492edbd1d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f20c208affe91d024f775f598311dc968448006d39b9643222c64b9e61f66a64_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f9938dc09eddc71cde7309f07800538c33e3f40f99f43d08cef9648a28c36f50_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:02074d6433e84788ed43e5cc61854e8f271ec3b26b314cde67ad176a14fe12d7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2577ed9640d164f0367363d9c634deee5638d79302dc135d6f59e154d69de7a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:71280e82ac402932d36c7adaa376222e09b69bbebff92435da8a8b969ed56c1f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d299decc7e623360170ce7f56742258e82836780150b5ed9508154aa9c834b69_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:55193f5eaf28a64a2e7a4ad2ab2063fe645406abef17a765605ecc83c87461ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9824a780337250915c0a24bec47a782a7214f2f5c38f960d195873426fc91041_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9a78ffdccffce11369657f3a810e911db56fab5cb46244158d20a740a215c203_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afb1c39c6a65d47201e40941d8ee4735c572f2bd4d1972e348d7def2fe79f424_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0ddcd3ae2f01e7fd67028ca5104ddf3a86a1f5daa37e04c441b884e9e0a17a50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:13e554d6c59a66e19f41be483e972de804b5ced2af9dfe24898a7b7dfcc03ceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb35944bf63738cf91b6e2ef9b71903e48c25a39b8d9ace3cfeced9917fcb736_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f14bc4a2087a946c33f4140b54a6229155aca642e7cddbd651813c5bda0a0782_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1b7e03c4e7e4dfa6a10be752ccd5ad9cf122e8a897bbf80709a8e7c958be7540_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:24ee5667e0640ff99631b5ba99a95c275a6188f3c14ffecb948b62353681cf23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d071115ceb2def44e1d9d1184f4ad4e231ab73c4bc83d4b0e6f1c35582504e88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e4ec9dbacf37f1d012121164b0f8930e749b921439fcfe0d0c6938d2ec026f8b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0ae5e4846d39d4c0fb45dda6d8de086e7d0de44511ecc1c523d32a5c1c94f646_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:592d726812525146400c6133a87ff37b5c70ed6ed0842e4d06ad0f70ba01d4dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fe9c7e068a80eb37eb15aa3f056b214e82bc10bf029b570ff031320fbbacd27_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dc21689912e561a2a4a41457ed4c52e75acaa9ea5da88bec3505375929c4ea25_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:05838d8f470015aeb5aa21a73b6c031416e623f18e525d4e7331115496375cc5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e8147e7be36c91aead1747a381b4c81dc8cc18f82f93e982a9744f76c510fbb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d74a56ebd5bf23d632311886ba3d96f948ee9247eeda59cbb6fa1cdb28f9d505_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:eec4364cb961da955778ba59fdfbe7546249a76818b3b01be78d0fe5bcfe5f77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:50970762356707316b1d9fe56aee61232c819e3db2bf774d4f920b5235dbc977_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:91ee7ed3217109e7099b918abfcdc8b4abc89c787b4f1141c6d209d604b799e6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b51f38df32afe08126910b3c207f3a534ae29fba9513504499d46ead3072d9a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:da0074c5f34a9c29f87d6133adcfc28d1d3d130158b71d1256fa4f1fa6bc7df6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1b3c126a36a570e9191396391fa29019c0ba1f02e21e73b75783d1add82da6a0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:429db069a112d5f8aca160e0b36f0b4bc353ececd4edc8ee375b65af159e6849_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:56e32fc1956429da1fb8acd48cfe5f969aef0e26f2631bdefa9896f16b956c18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c06c68f96a76864129ad131aa099d95b405da0ba6ed8ea4f4baf344d3a24e2b3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:faa9998b63a8b729011861d487f2de1cef0609fdf0d5e6ff59b2db78155494f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:92327192c0ff3d6a71290c2393c1e6fcb28a037d6f65d8cd097e0db9db2ade45_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3b30075b2e1ffa86cd81aa3ca54691e42c074b3f26aa317961eb956dafdcdd78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:581c275a5d8c3366f1872d23f9ffbe2475b90a9509c3bbc9194fe8a2b9904645_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:72533ae22b665c6d7dd5f36a8cdad13f09b314ebc03b70066e08131ba3667dbb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b8393184a98ec7a6251bdf207883ecbb3bdd6a92f4ec7b83cc705b3bbd21f40e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:154ddc9abbcc624fcf57d2f8067d6e81cd944a473c40c61e1e5141000ebc3f37_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:517f01ae0d90d977f5b937baee8f662bc794fa7182d9ca0f1a774acbf4df90b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6296c225981ef9e0295b9097b2d74e6e8dc2566546f7257846294f66f18814a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e837e0de3e998e7428af2ec79b18b30253093f876b202b8507c07fdd73e7f3f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4003c2c80a9c124fa887884ab721f24132ea7c423133c20d4fd5ed322db26e77_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4621ae3eac42955125e8227c199b073ce8468a0a36688fa69f0320d7e39a5cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e796e54f71e143577e07f2e60f2eacf643b422e24895aedb182b23219263dc99_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f6753451a277e74c5b86587d6469087c42725976687e66eed0f5c8cf9da9e3d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4c123a8908675044c65f61dcef0a71052cd1bd51d0db4b03e2aa333e83c46ae6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4d7e5c08ddb0f90fed68be4ab6384f92aa04c42f79770ff917283b98337f1c22_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:88be25c829fccdd1ac0ce6ba971b376ee975768ff83ac8ec09029a5f79b6bbd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fe3ac11bd2280ffdda35a6569c04357e1a8b14c1881eea605aa4461b71169a47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:286eaa8b1df00d646b85abd1f60aec3fc49555422fe502be73bca48fbbe8e915_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2dd45b129db38d9be65a08b716448eecd162711a355e4c0efee96bf01eb0b827_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3d218d666de7444769bf8f826954e6207b60a7a21ac9014e99f95836c1005ec2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:44070e63bfd7ee8e3bc0e91258b94440ac2a39f02d27102e198c6bd8f7c6d092_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:188471b16d28337c99de22ee8c2ed48e7ef9a787eed25afbb30d26c72ad1ee20_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:41266bae00dc0f5b1ac604600a685362dfe55e085a31c2b6d970fc334d81af0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c35fb5b6e2b622fe31270644ea38bb23480408dbe9d5ffcfcc578e978a7c925b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d4848ba62addad3f397b47be1929a06b3226f19b59e687a2a07ac2790209bdb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:534935032f513f3237ec193f5e0697acb8386e2dd6aa6f6493998eb892ee7d40_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:84b6290fa1980a872358f932e72c6ad1567bf204d204fc3b53a4f4dfe07bb071_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8fae4ec1963e8dfc308665ef5d447fea8c4d831171737d4e9d15bd6652647ff1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:fb217704c37ee989583aa147697b2f03c5ece16707a985d66e8986dc16485534_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:265fb8e52dfb0a66673fa9e3509c4ba56554f303d1dca171fd88e5fee4711f8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:99036ea6952a501c33173656ac42c97b02f7b9ccecb4a14fa9f385a2957c4eed_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a9cde1d88bd2525a6bebb9814ad2fb2850801392e984085eb7063502669c5bbc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e0476037c9c3b76a0135bc565733743cda8777479dc92a5cf2e6b79e999d35e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3a3eeac8c761f77a41d33229c6f2d54bb177aff29a28e7fd432726d4d005065d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8b6651d53b6c6383fb7e44f46a88a907d82efddfe48e794335b685d0a9d18bc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8fd84b88d1d0b9a8c3f32994acfebb3169486bef042507f38630214146818d4e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:aab97a7e34ce094d15df01023706362a51f3acede754fca2aedc2d5eb703c7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:29c7645a06c298300b4a8588a15de1a1949323bfe72c906ba6609c405abb2f4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a8a44e951dfd294527ab43a0fe88a4b1aac8821b1be4991d9e4f8ce6f276e63d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b24117107c87dec0fb39c7dc169254b2f3f18b4aeb6a2d68d6b871555426f09b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f716ff7666d8432f0e82dc011d47d6e73705fbaf3609d332f9735da4a2f6f566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:059891fed1269bca52f5f32cb6f16ba36a0954120b6a86e157416ef9eb1d944f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:067f7550bce5629963f53c42d358472945962e4d2b4659246bc03c1a913729e5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:eeefc23b6f2a68adc73aeae26f29e1571cab983bd6b39e8f59dc35f098290dea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fffa2668434846cf1ec4916856b8f7829e8172c9deccb2578074d29203aed2a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3c807e471e76a87c36b5cc242982a3d77aa5eca4d2503206b1657b2048fbb656_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6d551d6c37ca3848ea078871751b1771efcfb5df26b49bae599cd0aa71eac727_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:dc1182dae882575c1832eb1577e0ffc8404286c0b14c651b44470f82d9e31c00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e6e85603025e8694837043e55fb86d1f14d16b40b316ad2921567f2553605134_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:47c4341cba3c1859b393816f991c0547feb8644e16f07c7994b6c6d194430eea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:86071bb51216a7090d95380a0f482db51c132d82bc2d07b24887c8623cba5a70_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b292b51bcc2305d98ccfc13f23adfe4073249cb471d19311a7d88648d16df1c2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd4267a0b8f9ad66e25e38c0997db216932a7f05d95047c437ee629d3e5c8bf7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0f8eee13ed899196d3d5bfa3a70faac38716aefa179117a11de7ed34cda78271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5459f1a7445f66116ae2ef8c5d1e0b705fefc7abfac557961ed561823e6fb13a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:abf1a6136b365ac2c8c5a9e3f8573ad99566e3e48955c9c500420f767cdadf8c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cafb28a44a1f429d6ee1fd037f6defdadf81849c67d4b751f6e8ae47eb79adc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:70adf5b3d17e457cea22ceb2c4857f1adde9545cf48ea49e852577d9355338fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8210fadd79175bfb23caf174c0d554668114ea713682dabc916e848a9cbc6c40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:903a8a318a031fc748e0579e5439765b053ef81186ebf9e335421dfeeebb8398_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:b75a4ba2d11bd327f439089aaa5814750d080eed4ab07560d6338ee64e7276af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:04bb800a25b1dde60e9ea69e9467980dfcc92545d9a9725a9ce661886d360144_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8267a4058cd320a3eb0c0a5dd207660ab8c566f47f8454f1735e374827578e76_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a324df02ba14c9adcc1e4ad68919c8ecdb6efbfeecf528c1fc43914875743882_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb7c2c52038f93c81b71c8fd18fd8319a47a353eadb51812471d62055f65ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:844bb6bf5e458586d7032c2c3c38514ec4ce46b2e20fab8623cb67d69bbda291_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:aa4cf1a3255bf3704332001af530adcdfd1a3fc8090be83f51ce4a0284ec8f57_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bf586454b4e1c40cec0ad0379d40a422e63b7082753e5014456f8c8c724a267a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:fdc5efd91ee33e3eff5b8d21b239f5649ca10c7b0a2eb6ee83f945af5358c0c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4852971a854165abcfabad351f1bb34b48b4309b4f151ea1780348c711676999_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d3de06fcebb47c51068da5176f97301ac635999c655c22bd6885ddf8b3aad625_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:da2f60943921ccbd27ab40db18d00e65a1b3a31fd7cd305f43080bacd827cd5a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e860f184911b8af90dc926b6dab694435ebd823c1ad18763d97b78d42c8c18fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:02cb1c0ccd4d59942f92a5c4921d320687aa25907c468fcd115647702c2a5ea3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3c7ea027ce4fbaffacc89fb8a0b54b2f08b159c2a0b7c742f1260ef6b2e2d77e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:802aca6b1800c3604a9db15aa1a47c64aa3b0caefa74c356d0cea03bc78d3da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cce1aa81b2d3ab236a710f80f840514a90a01f160954d79b49107a39e3098b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:63cfe5d8edaa5cf74ec3160b1f3ba9776ba38d8ac1ceef36f131abc428b793a1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c3503102e3c23547a5985ceaa43be431c1e86f0dca674d8b8943cf5c31d751cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:516f749aeec4cc779fefa0c06ad8fe182ac1242ac1f6d15fc797da8f93288e61_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b50898f75f8e04517a30213a3f8af3a7b97871c0b0928028db46cf6d557bfabb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:49b21405065e1c2daa319f9194e23b6c1756fca1fd04b0bfe8a64fc0c8e54c60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5e4d7ca84a3123e9d5d98ac43bb6fce1032744267125b6dadec71509c78efe47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:10a4232affa1a21e2bea04ae86d10db6a09d6a5069e2f4156348aa0b24933a6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:9b697a1411ff10ac138780fe16371e4fb0c14321ae81517cd179f456246187d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6f9f08966fe12ea19f8209124da71f43bae0b096318c0f473381533b17b2e4e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:89bf2d275f617d69c3e099cd5006d030bc5e1804190afb1848a99b599d3b73a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9a755b835b2c4f0108ae44254e0b2f5086bb7e1c39fd847d778124bed2fc5267_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b6b7a666e6650f9db5db04657a2ea3dc708103bb4ee0e44323c697283f889db9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:17513a60fba837ca47e269dabddf9f814f2f51ceff0d5db1b03b535032de881f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:67d4cf714fee4aa6b66b9f25a31e6e711bae7f553f925b9b801dbb8e2ddccb66_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e2d3f110f901c96b25f26a535a631ba2253a92550d6e78c5538840d5af5429a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fd894f7869379aeb488890efed5e4c5a8f4b4eca0d8ce2460a3fe8fef86dd54e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:459f0d6d61aef9a141283a9025ec80741815ce33db48f8efea198bd8490df418_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:66ff9c5ce5911b275123f42cf0956d230e5bc99e39092d9c8ed0dd481df38830_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:76c82141d914b283b7195b46ef0ee3bb857cb9a8fdf4383c69fa0ac447cf6f69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9488277c65accf02392e47fb0621f1bb50feec8f4cdb6fb20086553c540bce86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:28f556d87487baf70e83e560218904b61a99663164ac54596ddff6bba30e7dbf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:6dfcee387b446a8175c140601e433c43bd4ecb36ba15495200bd448ec58c1f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0887ce99680e4358bd60523e29f2f0bffcbd227d37d587efd0636b5c152aa51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a977f08616d2c9ee5813118673180f2dbf26ec6178b795e38833a79862611901_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:14cf1bc0a9c5e12577a43a9ce3b872b97915ea1bb788bc44a5f6c1ea4e6626ea_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:17f23fbea752471f0215280b53a2fc898181d38ee9428e04629b75bf550b135d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1eb45bbb68bc0513f666915f91388ff9dab9668f1f4fcf2df5c3b76cf0c5c27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:78346c124edee23c689cdaa0c6446730e012676188556449ae87f8ad55013de7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:00f6ba985494302f2d431ad27b9bc6300d0c0d2dd0433e6403525e427a3341fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:196f7728d4782c2a503f895d2a01ad899f410dd33bfa09fbb661e6f0a6292794_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:71620d17db6ea19b3e4f13e7dc9b6c812082c8239bb4f4812c4210e25eef5f42_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e04bf9a04a464b68674f9ac7ae4d80c206007034f761a2f27fa357b84ba5bb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:05c942487613d2996a81bde3b7443ba9c263824df001641d0c6e41461c105029_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5e9157d87c55920f81b4b2a5792fed59a2707e64bed22c737fc517dc64e48964_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:bef5534dd9abc7003fbd4b09128c8747bc4ccf6b34cb51971df2451ecc69634b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ccb66face4350f0613c5a7509bcdf12fa6ab49988b9e9f5d86e811ec24090a1e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24051e48aad1c6633174bd0b5cb7f27d5342784a0d27d289953da7f56d831955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:48c6e2725865ef2b8b7d6dc501c1778d681ed1eaf8bccad0d978c163b36a8ad9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b7add2cafe1cd3f64170ac88455464b9a04b14fe03aa6306d36fe6a68ddd087_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a536028244f1762e47061f40dd49122dae0e25685bf00cbe34e2a1a917292e6d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2011ce7e211488d3cc572e5558361cdcfda179bc659c087ebdc26a70e3ae1459_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9363bfd3c9c03882f45aa71a5c38ba2458c76a1e214057a2a697fd896107eb20_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9ea92f690078e97dec18958e91b280ec6517387b4c6aa0176e71be1955ea599c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c347af1d9b07011f9d6bc82016378103771326048ebc1c9f5fbb27ba0e278115_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1673c27176bcbbf80a1e0201ad436b17ceb0e5b81f04f1b8c37356fdf081ec6c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:39f6798ea0392ef2d28991c0b76cb1ad4f019624dcb5ab412d15baa83599a5ed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:614536cf6d831020ff990a593ec86cd1e705f548d3d01d7b97be5c92ed3240fa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:dae09452da6ed8eb605d259559d91c235cfbf266fafcfe0b01ff9d110e513bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6182d7fc5acc733c1d1ce4732f2c38cca22c2e5423c95f7ad1c68ef31b6ed7a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b537921e8a53b8847e584d6e9c73792c4b5bf48bf7b322526577ad3f8636112a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e1fd959df2573e6e533f034d147dade28c2d954c06ab89c3fb4ef8204f7552a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ee6de701573c074c97e88b74ff71d5869bf5135739eeadfcb70e30c9756d29d5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1caca0c02d3dacdec537b6f73437dfeefec5d3e59831b714e55f36b5e2d14be3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2dc79b2f0b08345d965f10be34dfabbb0d7ef14b908a051ead618a143225ffc0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:3ab2ea118a6f0eed94f7d0c419fec9c46f4741a63511a13fbfa94bc99832bb5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6a29a6e930f3d89b8f68ce3fa698e52d2959ee2a64b1c32da612b9d0b82b0e41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c850cdc000f0b389aa043964bd82f8ac8c066458b39067f32bd228c17425a6a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:576670b0d4ae88713d96e3ab9ecdf4f3d967558195d27fc9b81298243b4ad639_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:9e75708f696ff9a6c904b805b780e9ba434c32f7f158e5bf52d42dd600c82bd8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:f087a53261f263470fbc424bbb214316ad1e19f2bc5da4fc877adfc3a5e66d61_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:71846e7cf7c064b906b719cc6abd08df7feedf6671d47da7e0c7ef6afc1f08dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f1a45d8ea38c193ebe12135ca4ac1ce08ba16e57b2477403fe5a18188b989b7b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:194986535178d28c194fac5673facc423f9cbf6ed98eda0101ac6603b655a89b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3330c862677971c0716aa2b7c25baf08883cd04d40e822fc0affdbf6ff612434_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:46f22c512390ee2984320ab7fa6d7f11dbb4cba9e988554622e9db512bd02211_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:d5d6207a89a90d9f3408da1ec88e8c13c8c23330faf4c82be14c1e07b9ddb44a_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code"
}
]
}
RHSA-2026:25194
Vulnerability from csaf_redhat - Published: 2026-06-16 08:51 - Updated: 2026-06-29 18:45The Route OpenShift resource allows to define routes to make pods reachable at a subdomain through HAProxy. It was found that the checks performed on the spec.path YAML stanza in a Route document was insufficient and could allow a controlled injection of the HAProxy configuration.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le | — |
Workaround
|
A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.20.25 is now available with updates to packages and images that fix several bugs and add enhancements.\n\n This release includes a security update for Red Hat OpenShift Container Platform 4.20.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container Platform 4.20.25. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHBA-2026:25192\n\nSpace precludes documenting all of the container images in this advisory. See the following Release Notes documentation, which will be updated shortly for this release, for details about these changes:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:25194",
"url": "https://access.redhat.com/errata/RHSA-2026:25194"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-1784",
"url": "https://access.redhat.com/security/cve/CVE-2026-1784"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35469",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_25194.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.20.25 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-29T18:45:28+00:00",
"generator": {
"date": "2026-06-29T18:45:28+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:25194",
"initial_release_date": "2026-06-16T08:51:19+00:00",
"revision_history": [
{
"date": "2026-06-16T08:51:19+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-16T08:52:51+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T18:45:28+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.20",
"product": {
"name": "Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.20::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-ui-rhel9@sha256%3A022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9\u0026tag=1781102050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780990978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1780989654"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780992621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1780990604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3A9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1780989597"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3Ad507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780989598"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3Ae6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780990364"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780992247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780992822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Ae59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780992023"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780992088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Aeacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781023952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780990995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780993063"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780992800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Af9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780991887"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780990394"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Abb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780989923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780990237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3Afbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780990660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1780990761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3A3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1780989631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1780990617"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3Aa09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1780991695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780990060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Af602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780990384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Acc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780994147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Ae074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780993101"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Afcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780990787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780992736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780989982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Aa0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780992276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780991332"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Aa4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780990374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1780989685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1780989671"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Aed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1780989771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3Af506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1780989626"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780990065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Afcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780990338"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780991067"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Aa5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780993645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781101876"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780992057"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Ad1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780993193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780993736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Abfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781096154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1781100835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780992046"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3Acc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780990619"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780989999"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781102013"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780993646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780993785"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Ae7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780993942"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Ae45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780993248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780992169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Aea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780989978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780993587"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781065416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780991963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780993029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1780990931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Add92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780992708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Aeb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780991956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1780991011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780990268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780990618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780989931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780991981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780992348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1780989708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3Ab9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1780989727"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3Acf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1780989649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1780989653"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3Ad076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1780989667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1781088507"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3Aa230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1781088491"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1780989754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1780989707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1780989666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780990815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3Af7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1780989711"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Af180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780993749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780995297"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780990712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780994031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Ac80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780992173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3Aa4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780990053"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780993633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3Ad57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780993614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780993153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780992841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780992602"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Aed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780991950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Ad38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780992198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Aafaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780993630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780989611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780991994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780990423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780990790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780990409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780990977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Aa62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780993591"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780989851"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780992239"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ac33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780990538"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ab5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780990501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1781010835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Ad35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780990224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Aee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780991589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780992356"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780993762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3Ae879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780992350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780990759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Aff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780989658"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780990030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780989849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780992309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780993695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Aa201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780990543"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780990086"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780989652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3Ab84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780990718"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Abf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780990637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1780989607"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3A3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1780990090"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3Af88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1780989998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Ada0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780990897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1780990100"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3Affb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1780989706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Aca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780992325"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3Acef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780993675"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Aa796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780992399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Aedcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780995559"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780995670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780992810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Ae49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780992305"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Acee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780993122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780991893"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Aa2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1781010833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3Ac175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1780989689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1780989709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1780990270"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780990594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781095245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1781016337"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780992775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780992675"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780989629"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780991524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780991532"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Ad79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780992174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780995972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-cloud-controller-manager-rhel9@sha256%3A80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9\u0026tag=1780989656"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-machine-controllers-rhel9@sha256%3A93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9\u0026tag=1780989643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780990146"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780991682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780992668"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780993679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780990029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780993213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780993198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780991326"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780992977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780990864"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Aae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780994008"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1780990729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1780990808"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3Ac3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1780989614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1780990372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780989612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780990475"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Ae5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780990762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9\u0026tag=1780989721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9\u0026tag=1780989721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3Adf7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator\u0026tag=1780989610"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3Adf7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator\u0026tag=1780989610"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cloud-controller-manager-rhel9@sha256%3A4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9\u0026tag=1780989684"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cluster-api-controllers-rhel9@sha256%3A7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9\u0026tag=1780989676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Aec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780993931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780990930"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780992702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780992831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780990196"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780993565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Ae913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780992380"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-csi-driver-syncer-rhel9@sha256%3Af3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9\u0026tag=1780989667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3A64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1780993050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-problem-detector-rhel9@sha256%3A425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9\u0026tag=1780989663"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3Ab2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780990978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1780989654"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Ae29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780992621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1780990604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3A691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1780989597"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780989598"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780990364"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780992247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780992822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780992023"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780992088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781023952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780990995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Aaa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780993063"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780992800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780991887"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3Abff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780990394"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780990237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780990660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3Ab2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1780991695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780989923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Ae0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780990060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Af4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780990384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Aeb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780994147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Aeb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780993101"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Acb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780990787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780992736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Ae9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780989982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Af1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780992276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780991332"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Aea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780990374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3Aed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1780989685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1780989671"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Ae63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1780989771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3A41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1780989626"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780990065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780990338"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780991067"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780993645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Ab378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781101876"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780992057"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780993193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780993736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781096154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1781100835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780992046"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780990619"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780989999"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781102013"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780993646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780993785"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780993942"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Aef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780993248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780992169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780989978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780993587"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781065416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Ab7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780991963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780993029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1780990931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780992708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780991956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1780991011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Aa8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780990268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780990618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780989931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Ad74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780991981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Afbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780992348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1780989708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3A59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1780989727"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3Aee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1780989649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1780989653"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3A3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1780989667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1781088507"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1781088491"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3Adf6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1780989754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1780989707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1780989666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780990815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3Afaba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1780989711"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780993749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780995297"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780990712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780994031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780993630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Aeb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780992173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780990053"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Af0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780993633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3Ae41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780993614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780993153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780992841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780992602"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780991950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780992198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780989611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780991994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780990423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780990790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780990409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780990977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780993591"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780989851"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Adbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780992239"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780990538"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Aee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780990501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1781010835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780990224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Af2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780991589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Af4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780992356"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3Ad82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780993762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780992350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Aa340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780990759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780989658"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780990030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780989849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780992309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780993695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ade154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780990543"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780990086"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780989652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780990718"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780990637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3Ab8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1780989706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Aea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780992325"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780993675"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780992399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Ad2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780995559"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780995670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780992810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780992305"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Ac95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780993122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780991893"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1781010833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3A2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1780989689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3Ad8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1780989709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Aba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1780990270"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Aee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780990594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Ab3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781095245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1781016337"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3Afd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780992775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780992675"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780989629"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780991524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3Aac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780991532"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780992174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780995972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Aa934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780990146"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Ab312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780991682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780992668"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780993679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780990029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Aae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780993213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Adc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780993198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780991326"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780992977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780990864"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Af6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780994008"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780989612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Ae5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780990475"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Abf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780990762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ac84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780993931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780990930"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Ac9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780992702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780992831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780990196"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Abfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780993565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780992380"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3A62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1780993050"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780990978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1780989654"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780992621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780989598"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780990364"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780992247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780992822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Af7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780992023"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780992088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Aad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781023952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Ad7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780990995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780993063"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780992800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Ae810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780991887"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780990394"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Ac891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780990237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3Afa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780990660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3A522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1780991695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Ae13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780989923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780990060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780990384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780994147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Ae9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780993101"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780990787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780992736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780989982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780992276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780991332"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780990374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780990065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780990338"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Ac8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780991067"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Aac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780993645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781101876"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780992057"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780993193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780993736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Ac943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781096154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1781100835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Aeab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780992046"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780990619"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780989999"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Ae9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781102013"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780993646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Ac255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780993785"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780993942"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Af7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780993248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Ae617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780992169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780989978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Add69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780993587"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Ab66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781065416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780991963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780993029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3Ab7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1780990931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780992708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780991956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1780991011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Af00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780990268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780990618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780989931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780991981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780992348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780990815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Af37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780993749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Ae0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780995297"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Aaaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780990712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Aefdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780994031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Ae1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780992173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780990053"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780993633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780993614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Acd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780993153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Adac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780992841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Ac1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780992602"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Ab10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780991950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780992198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Ab4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780993630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780989611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780991994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Aab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780990423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Ae668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780990790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780990409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780990977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780993591"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780989851"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Ab35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780992239"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780990538"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780990501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Ac61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1781010835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Aa901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780990224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780990762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Abffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780991589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780992356"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3Ae19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780993762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780992350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780990759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780989658"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780990030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780989849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780992309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780993695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Aadeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780990543"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1780989607"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3A6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1780990090"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3Aca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1780989998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Abe3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780990897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3Ac9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1780990100"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Aa2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780992325"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780993675"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Aa811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780992399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780995559"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Af67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780995670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Adb196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780992810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Ad02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780992305"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Adc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780993122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780991893"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1781010833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Aaaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780990594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Acd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781095245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Aaf8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1781016337"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780992775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Aa5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780992675"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Ad4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780989629"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780991524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780991532"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780992174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Af731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780995972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Aa5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780990146"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780991682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780992668"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780993679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780990029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Aadeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780993213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780993198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Aa67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780991326"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780992977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3Ab8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780990864"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780994008"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780989612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780990475"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780993931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780990930"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Ac6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780992702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780992831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780990196"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Aaa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780993565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780992380"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3A92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1780993050"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3Acaab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780990978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1780989654"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Ab8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780992621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3Acdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780989598"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780990364"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Aeffb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780992247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780992822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Abb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780992023"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Ae4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780992088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781023952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3Af42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1780991695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780990995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Ac93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780993063"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780992800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Ac36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780991887"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780990394"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Abaab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780990237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780990660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1780990761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3A1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1780989631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3Aec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1780990617"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780989923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780990060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Ae0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780990384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780994147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780993101"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780990787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Af481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780992736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Abbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780989982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Ab71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780992276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780991332"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Ac3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780990374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780990065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780990338"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Ac6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780991067"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780993645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Ae64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781101876"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780992057"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780993193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Acebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780993736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Ad6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781096154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1781100835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780992046"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780990619"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780989999"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Ad6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781102013"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780993646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Acd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780993785"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Aefb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780993942"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Abf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780993248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780992169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780989978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Ad648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780993587"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Adb00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781065416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780991963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3Ad637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780993029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3Aa428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1780990931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780992708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780991956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Af86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1780991011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Ab22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780990268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780990618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780989931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780991981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780992348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780990815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Aee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780993749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780995297"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Abebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780990712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780994031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780992173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3Ae561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780990053"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780993633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780993614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Ae8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780993153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780992841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780992602"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Aff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780991950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780992198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Acf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780993630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780989611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Aaab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780991994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780990423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780990790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780990409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780990977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780993591"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780989851"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Ae7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780992239"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ac5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780990538"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780990501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Afa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1781010835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780990224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Afb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780991589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780992356"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3Af0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780993762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780992350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Afd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780990759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780989658"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780990030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780989849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780992810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780992309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Acecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780993695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ae51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780990543"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780990086"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3Ab6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780989652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780990718"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Af0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780990637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780990897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780992325"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780993675"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780992399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Ac4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780995559"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780995670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Ad9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780992305"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Aabc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780993122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780991893"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1781010833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1780990270"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780990594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781095245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Aff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1781016337"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780992775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780992675"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780989629"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Aab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780991524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780991532"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780992174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780995972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780990146"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Ac423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780991682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3Ac1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780992668"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780993679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780990029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780993213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Aea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780993198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780991326"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780992977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780990864"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Aae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780994008"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1780990729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1780990808"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3Abe71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1780989614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1780990372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780989612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780990475"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780990762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780993931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780990930"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Aeb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780992702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Af62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780992831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780990196"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780993565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780992380"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3Ac03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1780993050"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-1784",
"cwe": {
"id": "CWE-15",
"name": "External Control of System or Configuration Setting"
},
"discovery_date": "2026-02-02T21:05:20.978000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2436075"
}
],
"notes": [
{
"category": "description",
"text": "The Route OpenShift resource allows to define routes to make pods reachable at a subdomain through HAProxy. It was found that the checks performed on the spec.path YAML stanza in a Route document was insufficient and could allow a controlled injection of the HAProxy configuration.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "ose-cluster-ingress-operator: Remote Code Execution Through HAProxy Configuration Injection",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-1784"
},
{
"category": "external",
"summary": "RHBZ#2436075",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2436075"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-1784",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-1784"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-1784",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-1784"
}
],
"release_date": "2026-06-02T07:12:31.172000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-16T08:51:19+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:490002f6d1363683178f4b9999f52602588f3cb75a9267a190fdfdee06e2db7a\n\n (For s390x architecture)\n The image digest is sha256:4b17edb77f71d8f32fab03e233a63b13eae84de232535a3386b44c9bf2dbb95b\n\n (For ppc64le architecture)\n The image digest is sha256:9154fd7ab04d202ecb43304419e5974acad03f16a9c5b61f52f8841dd310269d\n\n (For aarch64 architecture)\n The image digest is sha256:ce5d55048f0cbbe54394a24c37e54435e1c5032252eee4dfaa1d684fe00f7cd4\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25194"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "ose-cluster-ingress-operator: Remote Code Execution Through HAProxy Configuration Injection"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-16T08:51:19+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:490002f6d1363683178f4b9999f52602588f3cb75a9267a190fdfdee06e2db7a\n\n (For s390x architecture)\n The image digest is sha256:4b17edb77f71d8f32fab03e233a63b13eae84de232535a3386b44c9bf2dbb95b\n\n (For ppc64le architecture)\n The image digest is sha256:9154fd7ab04d202ecb43304419e5974acad03f16a9c5b61f52f8841dd310269d\n\n (For aarch64 architecture)\n The image digest is sha256:ce5d55048f0cbbe54394a24c37e54435e1c5032252eee4dfaa1d684fe00f7cd4\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25194"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-16T08:51:19+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:490002f6d1363683178f4b9999f52602588f3cb75a9267a190fdfdee06e2db7a\n\n (For s390x architecture)\n The image digest is sha256:4b17edb77f71d8f32fab03e233a63b13eae84de232535a3386b44c9bf2dbb95b\n\n (For ppc64le architecture)\n The image digest is sha256:9154fd7ab04d202ecb43304419e5974acad03f16a9c5b61f52f8841dd310269d\n\n (For aarch64 architecture)\n The image digest is sha256:ce5d55048f0cbbe54394a24c37e54435e1c5032252eee4dfaa1d684fe00f7cd4\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25194"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
},
{
"cve": "CVE-2026-35469",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-13T03:52:35+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457729"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service flaw affecting OpenShift Container Platform. An attacker with specific elevated cluster roles, such as those permitting pod port forwarding, execution, attachment, or node proxying, could exploit a vulnerability in the SPDY streaming code of Kubelet, CRI-O, and kube-apiserver, leading to unresponsiveness of these critical components.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "RHBZ#2457729",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457729"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35469",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35469"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469"
}
],
"release_date": "2026-04-13T23:59:59+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-16T08:51:19+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:490002f6d1363683178f4b9999f52602588f3cb75a9267a190fdfdee06e2db7a\n\n (For s390x architecture)\n The image digest is sha256:4b17edb77f71d8f32fab03e233a63b13eae84de232535a3386b44c9bf2dbb95b\n\n (For ppc64le architecture)\n The image digest is sha256:9154fd7ab04d202ecb43304419e5974acad03f16a9c5b61f52f8841dd310269d\n\n (For aarch64 architecture)\n The image digest is sha256:ce5d55048f0cbbe54394a24c37e54435e1c5032252eee4dfaa1d684fe00f7cd4\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25194"
},
{
"category": "workaround",
"details": "To mitigate this issue, review and restrict the assignment of Kubernetes cluster roles `pods/portforward (create)`, `pods/exec (create)`, `pods/attach (create)`, and `nodes/proxy (get/create)` to untrusted users or service accounts. Ensure that only authorized and necessary entities possess these permissions. Modifying RBAC policies can impact the functionality of applications and services that rely on these permissions; careful testing is recommended.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3cc8af76a34d2744241372da99f99aaed094ab834012b0f9d02d792e72980529_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:5a1f13a9a3edb3b54c67416d67f95f081c3dc75afbb979a6d9f8a29d86edae8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:72d1c53957ea07656681edd6da3b9a8c892b7c066727cbf6863d49cba166cd11_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:9d35fca883a52887fab497b7ec34639d7554d0f65d8212c2040aa4932f49c686_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:94a6c83950055e8e6d334fb574ad9d26014b92f38a14cf9d14e5aca4514b6999_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9d761a4fe1c43b790b3cbd84fecf2fa633060bd365ef77edc1b48a74b7867f26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8701132ee8a7dc4641f23cdab3238951c90c592717c6230a5b03e5d1339c526_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e29931c28d6ee43ce049d127f7ed6ddcce31c808f168be3431ea5dc5993d7d5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:400e13750c8398c3a89351770396f89bd15efb059ed66ff80422e32275dd7c50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:82f3c0fd5254590794c6fddf14d315dc78afd1bdce962fc697a99bdc579a3d5a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cdc85493d3656b76494ef07c494a7546f3ba369250ab0924ebc46c4e9dc74fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d507bf78a84574b0a05bc844d069855c3a827e29962ac63abe077642c5c36b43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:0a29515ee2aa03916cccde9d22d2aa1cac84ca41bb2d9f606ad8509d607e6407_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:35d1c1456675b78ec1236f01c04700efa8fc0c6c42cb01673379a745d4b19de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:41aae64dd70ac812324792ba15cccbc292fc5f48a5d78cd9a8fa465582b0dfb0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:816bbaa3be315d63a9faa59567cdcdb639f7d515bd1065e8ef5f01b21f7a1c29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4e4a50b140c9d7c056f152ad24245abba6ca247824c779da6d765bf84e394815_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:72ec7062a6b2c66866ff7c00c0fb87217001435dc08f36e9f7c49bc9d737133c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:a4eb05b2c7a38cd7c76d1e546a0bc5672abcf0c417b0f37bacbf809217fc37b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e561ba7bad57ae3524b1f15d9e08dca3ee56580cb8b941e7e20c3fa8e864038c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:24701bc5a9a6db92fdf4f0e12bd5fff8de217e155fc7afb31f641cf2cc95d4a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:42cc8319381e9be602455f45f0671354cb21b7f09a7888926ba1046b1b78dc1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66252add6250845724abf0139a5c48799e54655e62e045cff5e9494ef6529bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bff29c061bfb1257fe5c491e3e1b79cfd6778687b599b3a5a59070855009222f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:0db75e89241ad5b4846fb2d75e49f52a76ad9009e7c4589c8637b7e6a8eb354b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:459e942ee31f991b1ea9f586026d7a7fca9fe7e3f705fb3bd12602383ea286b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cc5a005982a5540e666de29589266fb6a714c2e218aff134fc9e7b2611f9a198_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb66227be61cb6c279302c3f7f3f98dd48de13ae7951473436bda28ac7d3338a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:96ab2c42ed76936ad280b478d30e884e935268f6959b718666f6da31f6cd917e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e074602584219de0b60cc110baa1becb3da18357a748677483e7b4fd832d4815_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:e9fe71323cb671159dd671a005f9b1e8e1687a178455b7111b39d006eb6ef4d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:eb1b8415a7a936e671396aae5896e62886f05f5a292a086e59fb9a0898efe57e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:a201c2873c9f889e3afd94d11327336190700a9a8202404f572fd55cbd102063_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:adeb3ec21df2002c91b50443a4edd4a6378831cad1c702ba93d1825f5d72d73b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:de154e19ee519587ddf22ef6d2ac184a0aa69cc9f40f81711cd0d0df9c66ca69_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:e51def88510b2fbacd703016e7229a6517ab6d61e85b823985ae22fb9f0f54bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2e8f024d9c6e82011c3c8cf07e5551fbd6975d88ceb9c3e70f949c3e0c493b59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:84cf7767f8accb9ff5deda40eec8cce013e915825258035875ad59c38d16c174_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8ad8df77cf421a8795197fa27d4fa8642e2a9c090aca92994638db791d681ce7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:cef6c3b307807a1270b98e22194f2a0562b947a05ab10cb15791edfc4913a9b0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:068d3e3201822b82d88d7c4cf90656ba030b95482707536a8373856c9d7e2bc9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8eee73cd69c60583adbf02903465ac2b5fd903e618a205b4402b4ad083f65239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a796d21fe5c890a76cce71717a5244fe4c5cf234fbd878cc815592dd5301c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a811a548aea94230c3ce03d252b549a1be27cdae7d49be414c435577a393d5b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:359fe0833aa5fd5914518e7bcd3aee980a0b6089656f629fca7579681457567e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:447d4d660d043c4caf3ff2dbed09c80a1b3cdf4443cd3b2572fbb47117c961da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:48021ffcc6f3ea49c68b1106224ea0f6879365627473be531eeffa1e365c3ff5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:db196057292c7948da37a0b46fdab1bbca04e208cbdf7a25ae73acd644e9dccf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0ecf959b83d1131950fecbb6feb35546cde0de2510bacacf2c063536587d5bfc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:29ff541a825c4a29c68e90c3586b85c5f0a0fbc1086db27055aeaaeb65ac0769_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2c357124abdf16ec2758403778fe3447b9d727f62f9d38a16f921f363542aad9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:349eb5ddcd08e018f6fb6c5d96471b48f7a04c8f9eb7925807516d303e89ca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:06cebc701570ba3c2a041dbf1d785587a96c1a43726165a55bb63a32dd0848d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3101070bf37e01553f9cb5a3f0c7992fbc00a27b6f330faf7c1a2d2944c9253a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:6faea29eae8a5514e953f25069293f584de01b81f0f13ad51c89dee06deb1ed2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f731c7fea697b88e9bf2d37eeb2b3fdfa0953dfa8848f8151c8a51f4fd376900_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2bc25992e00a8015acb321eb6d5563ae04654ca82b1e7bdeb29650497522e450_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:382dec86bfa26838b2d844ff60fc51e485dcebff7df2b8f0365b5d8df5d94111_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:84f950f73116fc0448318ad456375db3b19355ef92e74bb47801f1f0d3dfb9a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eab72790b5787c608821060eedd6847173728e7766620ab31788e85baddf0586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1394de73925d6a29c2fc0c9a7930b4508d341cf4aa06d4633b41553714c45ce0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:387ad68458a856eb47e59845a2d3003cfbd771544c96058daae16be0737a8b3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:72ff381d7af712dcca7d839a06374df03e6e9504994e4f222ad2f494a8e3ecdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ade826189511aa86dc37212526d29577e9c8ff341965f986132506b1bac4cc0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2615abf7cb6328dbd3576d415e76d80a40683d52b8c9b5d1e60e9b076df2630a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b493b297531ace7659a8e62a5c955a894e7ba826a250a21febf5ffa963543bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a428f3a267e06d5088080462ff2d411273a16a99b090924914925efd5ce4fac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:b7cda01a3e5ba9eadaacd67c3b2239bd881e2d1d47b769d31868bb9b5778ced5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:1fe85de03f254fac02e343383ba66a867f9ae96f334942c56bea8bfc798b4831_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:69ff8c113b72c165088c4a95256b420815c788670ece5113568e5fd483a2ecf0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8fc90f8acaa5807303c033cb33f38093c42bdefe213a513b99f2b0e5041f25c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f86a587bce586411c54ffca3cb2d29c5ea79fc621831959d9bfd78aeceb881b5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e578708afd4270c5775ff50bdf2e584b4aed57c71f0d450e16a08900ff6c5c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a8eebca08d59be0f90b90d7e3b04eed3be0e5a7e363587ed78e2dd98138284ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b22e267810f8d6ef0ab01bbfa641800452e5a8afa536842db04ce6b2c2e75c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f00de52c0c8137c545495922c90c353752739962d6353cf15be5b5ce2d66ffa7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00a66b46989dc74cf50d9f696c383e5cc1d5fcbc10bf26113f4eeba0e5d637f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:0d45019a12acfe9a892dc40d31d4508e0b74892959d4ec9dfbc415961f1b9a1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7fd01c81ac05a492864a3d75832cc74fe34212a017bf9d24c4e72e6dbb2a147b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9c3f2ea8cf86ab25c0a579ff58ca062f83d214a552f3085b96bbbd0555b49509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0d561ca2a9fca0a50e9a438a7ce9e917fe969e10988e036ef62717ed1837d6bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:568d064453bff1125f0d2a9efdee75e72b571da8bad866d06dcd21ae77536306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6c3169f781fe6d89db7196f6362a2eeac811fd8be9a0b2e189449fa68c092b57_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6cc2804d554c2e336b703a1f24da2ee46947a48611d36ec82247d6e5e76181e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:022b0c8b12c8a6f77c6e51c1b7f4ff6f4cda78f172084fba5898567957494457_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:047ae0f20431c9ab0b8a86bf3225ac716ae7e00f30cbca193243cfecfa8307e6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:21424638caf1bc127c2535875b6d5aada6f7716917d4d050399f44c1ea69634c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7083759896a021ca645cf875d3d0bda0ecf2ad40df12c2d6a04a19fd5a894e8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d74b402d393868e6c43cd79545b20df323ea4f0ccd7ec6f4a104151bdb44ad89_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0d7d04445bfa5588d4a3929561a50bfb3064bdfcc025019e5d028ebb5d0585a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0eede33b707d274e88c90d02db79f2c24be4323c529366aa8b8ef663daab45e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:642a6a44c5ccb63a380ab4491670cba18ab29f9b48adbdde46a632a911d0afe7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbe9a3213b682f2c2f0ac5c169c61494c68db78077d587446f4dc7219285cdd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d5d24c96b302ba2007ea26b869650ca262fbd4cbfdfd611bef06dbf97373a4f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:724e08d3f34801f07849363209eef8297511ed55a743c746bc95748067e4b25c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:59c383bd3c17bf1f264526cbada3c389cb294c51e65dcd6dc2cb51ba6d12561e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b9216ada1745ea932f6b4361d51379a58be4f6e16adf7067f950d5060ab4acc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34d037640f44abccfaa7e332b529d14e940528bc66a95162b584218b7a08b8fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7cf0c113550819a9a361c429fef5073ac967762446a98119e5972572102186ca_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cf6f689587439d3ce7bfac7940006ed2b176bcff1989086214588a0ec14eaa7e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ee10ed3e31963017d7c61ded031583c6b390d8c9858befe123200615dad7de11_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:3d271a454f43d533bc4a51819aecbef60c14f4c69208baf8b6c7c1f832354092_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:d076a17dd06fdc4dfd5a87d75dd9232cad1173ff68c9959d855264b6618e4a51_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1f0bf8c18606e52a52d36345113ce600f9cdd79e79888f84cc7dd2ab134ab562_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:608e5542e4c79ef0f090b83cf35e964e2256fb35573e715129d6403cd5b39e60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:77d44cb4ab7f9cc996b4e733c548feba4acb38fc2521c351f5fcc15db68212e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a230f5646b2fc22bf729609df1d373997d9d275d44e77c779fd8dc9fc23396cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:79f828d7c17624b9983b888aa8559867a6c22d2a260a2877f763e4b118942ae3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df6773eeece9407022bf7e414e841bd480423c07697eac9d28d28b88116d9d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05a4c11fa10408003ee9415d02a4463f003e526aebb800b0be7917ab31d2a9b8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:05ad2184c63e0c48d8e3b6dbb05eced2e8e51c638a4c1155dac0e7cc6ca9683f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3d4e9ae062a4c710bfab2951c8e2a3f6fa5fc3100cbc004320872b680d0b273c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:9a7bba67f0ca65d0a27d7c9252a50f4238b2c0fcf1e0cd9f820f4b4b2b1cffba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:691baebd1745be7bc256f1c3e0d53afbb8815489c4589c6ce6824af5acdf7314_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9a4863ef76d07f1a484148430af50b18d9edbadb211b106cfd2aad1a10f420fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:05bccbdaddb35a3078609867515f1c6597098471017cb17523beb39b7e711d3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:3458e06ac5e418f8a3b179802529014ca14c1658082b2b44ac8eca7c2c7c61a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:f7a3cb0093398ce6d19699b1a3b1d6a94e413387bc1309c243f6388ae899ba9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:faba06756db7dd76869270eab8a224e101004e2419dadfd18f67fd458cbc68d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:12e6a65263e5f2a38f9986a8064aa571b8f0eb4e2884bdfd17fe82e971e1d081_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ee5856d5e264b1375efaebdb82f634640c69dba122d5919f8fd1ee3cfcaebfdd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f180e8fa577cd760756f49e26ac0cc92d6a8379d2ea554bec4b9dd10b7db714f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:f37d048762f90f8650cba96aa3cbf418166588f2fee1ab1714856acbab217982_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:30e1a5dadf5c7efd8ce089a815ee13da4c32b41dfe708e0368f2b7911abdec08_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:33321862c8fd87d12152c61a1d1896b36bc91a7c838f67aea651308ccaf640d9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4898d02e95bf28f934b492ea5ce4b86c15c0704b30b8f6cd36916473ea1cfed9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e0a2d3fdc8bb1e3f1b506313c2709c5e5c650cabd469e814c8a2e4eb1d720a8b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:26472ee9b1c4ca34e85e029ad7a5b9609d0bdfd0cb48846235d1caef5b7fb227_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3c858d70dafa3fba2a224b3d2068f8305c2672af1021ce8b8209177e6d1cea45_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:895336a18cb93cf188f2e3e2759c90d7a9495445f77bd03ca98d93ba3a2d053b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e6c4164424cc04ccfc6779a33fdaf100f5176e59dcf467756e476aefa24600d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:29a5e140eb9fe27cce44cc66def33a4bb4d36bc545fcdc0215630abcd480fb01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:897841bbd9d6ddd064e4bedf3ad08592165266c3031bf0903da98b3716864e41_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaacda61f1a4fc30d9314ec3405f5c019d3cb3e8f437240d6da1902e98b80f75_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bebd09ea99d761ec610091025a35991e23a24cb73e3018d12b12b6a836af2253_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b4f6535feb917ce757c218b926a537cf8a53e319ba1ae08314de680b77f364b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b986a149dda32c2a2141bfa82a5059616f529392117a73d8465762e0c50bb37_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2ed35540ab1c253c28a277e9e3477e32fca3b038447a80bf45729bd0100221de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:effb980a7afe282cd37fce65dc062f8245b37b29e5d877f341357fbbdd7c21ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1fc1cab09c28eb4cfca1211ab50b2eee122d2cf836ff55ddb048cd35449a9352_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:27d3111568d159a4d91f9c00656df6f2495867eeaf6aeff414cb7868203ac8ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2bf048344587167aeafa439c361e890baa46ab639c25d91bea75963c82763292_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:efdaeeab84beea05f2b3c218e0c182be34af50f79de4ce5e6d4a1747eb56b9eb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:50c20d995dfe6e36da4777c768b84659ef15ebb79172b7a1893bfc1b39d685d3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6e5555e03a5b1f527eff4a002dcd3ecf38e0202fee030b28546a6fcbee7cd51d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:885b329fc6383102413e37b781ea89a4aefde4a2886cf565a19eb58d5bf60a22_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8b8578eed0ce74052e564ef6889d38d9b0a0ffa3e2aef9fc839ec2e4774460d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3a260d2c2bbaba5a20debe822ea9043e777a4ec2b93954ffc1eca0f871a757cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c80790a61d6e088408c526a14b938566180f11993f3c27e275d0d80acb6da626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1cb8b3fc302883206818ab2f074b6bd6929f9ce96f1d7d7e7058a9397bd5ce2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eb231cae26377ec639abc5d5a708df2b59757a69ec6f8bf00658117fa47248d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:249dc00b8b23e9465996084619830089b7a1b0f6818deb74e49579ad48aae1a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:60a6f160fb6c5a1988d4a9388ca2f0edea4194e36887ddf98a280a00685fe3ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:675c38fda8f7cb9bebc4a7583c16976b0acedf6a340a88c7141709feaf113442_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f0ffe1f5fcf33bd5222e90dcaa867fea330358fb4e27d72017b8a222a80b8794_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f04fe192d18130ec9338370bf5012a1a991a11ed37e62a335cd77d00e041da8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:634a0563f5bfff8be90c6566be754c95d222d45fa9a33c43af445783b72edbaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:d57415f28ad2207623f2429eb0fb741aba2e0ad23010c4f048402544b3adf3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e41575a440fc6fa1929ecb9e355e9a60a1bfdde7c1912d53aa11a3659b534d20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:495faf2c3c10932b6581b80a82ce5c2378cc7af2bbcd9077395cc180c204fac9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:62f45b80a1ca89ecdd4154dc2bb7a795470374203b60de437101dc8e8ad73651_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:cd33b32f954881a6bdc848e457e7c8eae6af31b0251a7aeb42c78d71477b1ecf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e8557688644266849c934c88e87accc44af627bceb6f315a12080c2df7cb354c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6fb205bfa0756c79e6eb6a9fa4026f4678b4bd94c3b059279e5349f737243448_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:8d2db556096ffe9e167cd8920b6b857eb6dc8ba98bd7dfaf083e7a41da837e50_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b2d1819a4f467f51bea1a89e2e165e02390748e9b7f686bf4d81bd990189ae75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:caab549373e7462768f9801b3729fdb8fda533b3f0c8dfa55a33b9034f3d0b03_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a2259f7420ae0ed8138b276b368c60c61815804b88a7a6a1eeb49a3f9a1bc3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:70703c24f0155565e50d675ac44b03ab6f2a887425414d583ad16febd627b987_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:723b128bcc912dc04cf783cc39cf3c725e04f25fa68c5d2ca651188e01b158c1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dac2bb222db1bc2fcf125f7d1f849f1902d4615e15094275dc7e39cd2825b083_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:56e9f6be8d4c7fca4a5671c7277f17b98d72fb448b633c9a6e56bbc3f6cfad80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:999730a10ad6a4f6d59919547d8a241ef86c084cd93927bc80ebc952558da398_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d29a9be3747196711043d6c2fa71846bf6b783a45fb13438db1ba885562ab24_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c1938f3dd667d6bb18b2bd6c8bfa6b37bff859ae7877ffa8cea2e4d4adc701da_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:48cf068677bb65d3dd7faf559a0ba26fc9e2f7b7f041c2b49d4de9fa269a1305_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b10eebcaec83ac6279a8ae76add2080dbd632a8f402b66de3aa76f5474fba04b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ed750c4abf04f224016bb7e35b2f10571e9c2758892ebf65e3aa24fd0b670739_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ff995569d8f15bbd632920b97368ca6ec055d1a555101b6ab8822ddcc99b2505_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:50a78976b8d5aeb0919da2f3f10d1e719d3002b2f77a94f0682827cea3bdf9d7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:6fa5bb66d05df15a6d5b0a8e455c9c5520907abaefd2a251b397d2e91c286203_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d2cf3e6dd112c6a1a675eb95e1492010bd4ccab960db9fc1af18eed17205372_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d38bc33beefc743e055f18380cb2c6ad6249b2ad59604e2b6f67728aec8fa5c8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0e33274df3bfb0bf3268983763f80a74f67c33b64a25afa6dafff4450b2eac6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:afaac0ec144f6114dd5b1c507b735972486ff82005ba8110be53787d6853f1a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b4aef26e65bef8c88b39d548258e019356fa07c93678e4f2701e7d003493632f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cf4b71012e79099aac4b5f70e75362f7cc6361a92d7556607c73ad73bac41e55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:075b5981a4c718ccd3b39d7040dac572111467e8330eaa85f77e01d31a304dd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:0fbe3c81bd07599efa69a501740092d0b0b71f8b3570e25bdd5d9f09aefbc02b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:77e97e1c5ab32d32040323326dd777347d80463a7029351c5c4e736eb9fcaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:862f3a00766e8ab38028f37342656a7cd3c7d156b020ebe0f79fe7005b230b39_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:0aae25ded8c75fbddad317bdf155eee8b794bef8ff078decc043c7f893f7032b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:870f22defb65b2ef56e1823e6ac6260397d56a6c3e5e5f2d88866dc4ab48d41d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:983591ad68bc99bef14e04a65d2712059bc873bdfb07a67152d2480bff3dc18f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aab4918d1518a3bbb5e61e9b3923257a720f4174604f3e367048e5c179d00487_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1619576d062003a32cb3a6850978bb91d3786826be06e4671eccb9db3b21d778_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4f849f22ed57fe45133633d12e64d25e0d8250d04fc0e87468dbdc277660b0c6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8c1b0f132dfbf51224c989ee4dd4e3144ac014dd0ebf644f0edb0f2804f49cee_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ab8762c5e29c34dc5d2d981b14c162c83fec934c7b8733d20f4b564a1d8563be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2dd0037232458398d30112a954f7e00e960fc2b38a65dad6525b9ec2da10d3f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3682dd3777404b5391b36004e96a2115ab3aa26e1e89a9095e151ec7dcba55e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4123adc7b32fd1b07ac530b64632eebe2f9af718ec5f1aa7f1cef50988a8f8bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e668799330d027731ecc8006fe2163760482ee3376501d232fb890b0f8e461d4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1e81a588c8faa06e846c6e6ee815d2074ff72c7cf3d60f99fb684bb074d57d2f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:647e53e9644ce6f26ec5fa331230df57f75c0bb4bce19c44567107ff78cc61c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:747eba2bd1d94e4d894e9b9dd92c4b5ec2d73f88fee3a8c417076d62f1037f50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7edc8f6094ac624ba67dcad00f6cbf7da235a728f23578853f2c63e5e9be7732_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e975ad3e91e8c2a8be4493725733d615de803fef88aba0e1123ae9252e8f6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:4fa8d8ba0d64c4a199e6d3a9cb5f5667ec2dfcd7a9175c16b63f10c71d17ea7c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6ab57691aa5d648445f9a385e73c84c849dd8960663fed8ce62edea9bd75be98_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7608ce18a1e32a61151cbe2db6b19d75b2ae9f62914002182e4a63b5d7602be9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:21c99a8ab702a6ef0157bcf55128b0316e3ee3374d2c4ed237458ded684c7773_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2c0f7f5e8849e77b5246b414d64ce097cd0ff1cf4391b0113539089d9793f52a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9276cf4bdd4aea603489055dbb1633e90965d890fa9255fc6e89d1685a7d6ec2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:951ae359f43e3ed94562f7ace3f4e7bf2bc79893645225b7a79eb29f8a23bdca_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:36782eac3d390ec15d679fa736043dd5b4fe3934946deea6bcbb1b5d6e53df44_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4fa60458da41a1a95d960160a8621eee512d2c3eeb7ef5c2aa44959d37750627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6ff90f43371be86eb66044cbe19286489b7e86d3d05ff047e2acb941c40df396_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a62497b31d4bbdb45c570c918b4c7112c5021606074007e97411f05ecac8c3a6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:442fa27a077177220e08b7b7b4b519065a63a3cc25b6c1a21c2fbe208a1a0d53_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:451e4d1697ceeef37a6efeb0db2a1371e0fda7a0c10873a05ce454b672fd23bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4a42b7e880b970f8adaa1be704e1fa66d04e6021eec5be98a72d8863fef3a36d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8b84a2a6c950007eb89990d9dad8ee45fe1a7d534967431496d8ac213ddabe50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6c04576e57e745385a5e59b379b369970bdb9dadc94856bd92cb7e4a6d0e08ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b35c96e68c6c9d2ec0b018cb7c9a5942dbfb6ab26d068ddfbeedaad7ac332626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dbb7a05d106b27b144f420b6800954defc1e11e8d03a4faf3522729e546fdac4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e7358482cfa1dc1ad0b140894dd0fc5de69d07ec4b889f4846188428417a58a7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:19f53fc1dd680d4e2340a4d47f6eb96d641cd68b9890f1d47e71a8463039788e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e8e2291b1555c34336cb6e3b6e2add862573ff5bb90ecff9cfd960de3d98f8a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c33db91adbd845078886b330feec7a32b47fee1bf95dbeac720e0511ef63a252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c5873fa0a49209bfcb267f5292e191d1d5a2858c1d723a4398b2ef5b0048bc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4791113dbd7e57fcb4eede8d8bd0c37cfcd55e809aafc932d2adf3dcb7e6cab7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:766fbbf81a6a7c875f5143346492fac89ec50f5dad6bccea4c4333170f89803c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b5346034a9150762a1c16a6f1bdb2ab47a27b6781080597e6f7157e5d9b4eb09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ee02b06203bfaac067325685d26b5e6d9216e749bf65955d3b3ade1c28aaf9ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:295f2ddc5fc0e7072de36a187993e42ceed7b40952e2d5d24c1773428103e9cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:4062779d584c167da00e57301d0b44644359567cf5999f5cdc3cf951c39e9a9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c61ee16f34a71f36789f8452ceb764037c38e807d1bd059819dcd39810f4556d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fa3ee72f8a9a95ce0a4d1733d3487eba0b30a5046e025a046707f0e1a516d799_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:036457eafe5c0df3bb9cca3a607126d309310835f8b84c8113f5866a0ad1ff75_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bb4f129a86fc56c03fe46a512f2d264ed8104e2bc11cd02b67e1a53e74ea7668_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e59ed6810fd37ae54dff3fac65e276c2c24e8113bd2829ee0b60586546dc9f09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f7faa672e8c9056ce4cc3a52b51f83e351ff46ae298574dea6da020ba152abaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0113e6b1c608169a71246a8b99af7e17b71410994c52cc93305dc7b975f8be15_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:075410e9fa9d91d376007781d060dd7dc4e9f1ef157a6a63cb4bb6a80c567422_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6d03c565df0ad0326eeb1193c91dec6f60be8711d1267fb3be8eca18007ba1b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e4a560e9aa9ee03b132a103c143f06121a1a11982ce727a839468e71c1dd9df4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:89feeeba3389ce75b7fe00facabfc6e3a7aa2ada8c991e42eb9ceeceb0d57dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8ce39e04711346f0bc504fa09c92af6fbf0e4b76f60d36a2a2e2b0a581f3ef0a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ad833c5f86d03ef225f74b0cef923488bf0b9afe4034cdb7693b1262723f87df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:eacc38278a0f1c81bba42b91afd1d57a572586a9ea226d5527295e4e5bee7ad3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0085fb17f87566517b8c65c67adf92df88cf8283f10e043ead8b259be2648ef0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:814f0cb811527718bc88855e8329b4e833dfd9cdc9fea65e2491c3d1fcd4c380_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a901c2c41932ac63ce36cffbf72dec1f104dc196ef34f92879fc7d377389770d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d35ead292eda959448895ad7ae88a52b6975bbbef667e6ab5bfc8cc071f453e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bffa8d0903a0bbdbf19422c93f70ba5fc79cdd90343515909bf01d61771b9418_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ee540119a93dc1adda50689bc1df1430245c86d03c39d75641fb2a3925d9b0f2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f2553d2ac49ad6c4d125d1808b20c080459a0267e118a4d4ec5d65863dd3b52f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:fb172d8277215d74f973b80314feae0a4c5ec450f722ec8ca7f8eab275ce37d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3e1dc3b0404cd3ed67d92d8482829b9c509aca082a16779b042e69a16bcdc403_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:67fb2cbd345a0b4b5f255d51d0962644fc0c2ac1d61decb9c73b4a769158c154_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7f43082511839e4094b0c228cca4363bd8043d6919c4ae8451442648f21b381e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f4efb47cb2609edf45bf06fe8bd594f585ffda93daa0ac531e76d70e6ada44d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:25a3abf7d3e976cceecad64e8ba12e856406825ca32bcf84f2129c08e8f43daa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3515480c02795953610e432da25ef95e1736c4d10bed8931d0a83327646b0675_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5c049a7348f4ff70f56849fa3e887cbbae473eef694e652c2b5f250ba554603c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d7693bf64dcb54fce3f918d9df23cbad89bf1b6ae0aacf271ca89b9d885ff3b2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:23b503bc73a7526e5276c3087723e74e4cc8969415b983aeea17acc57eefec4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49f790737450fb2b069e2a40006dfb8b60fada1c0be0e42bc07a3a6fd3c6af61_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:509addcd676fdc48f1e1869daea279c1bba4cced24741200d67fa7eb6c976eb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e879a37df7e820817303733d15247e47581a9da7cd9e5f315fd27ec53dfb80ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5c83b4f4a1e9f3b9db22577f9f07c5667596bc6255e09790c2b823dd1dada137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:905a6b61e3311f176dbae6b6bbbfc30e728f7a3b43eb99193762f613b8b78347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:aa664e42a5639ceb0cba7158d6243ab6241e14776454061ab0c5677f13920cd8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c93e967f8f5deaa7cd6eaa5e60be8783cc0fcd98f9732de7d972b82dd0ad1a90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:045c9dd8a74eda1f5508fcb814958fbfe8bbc35902b4c7810977752d6bf693ac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:666e4eec50dcf497f156a8374f58adc22d47e8e17798da914544fbbfa6fd93ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a340412a956f6975fb66ff9144353e63224ccfb139336d34f40fc91b65d12c18_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:fd9debb816c6ca1d2c799f6f499a665dc06f93361692aab94f78c0d23310b3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:4ddbeb3e0445bd6b97c209511d90c60d8083203208fd05f6abff9b1627c0bd44_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:607e7d1c470843900487f93908f3ab3cc2339f4388dbeafaaf248e7fa17e1953_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:66c5759042a6f79b7232ed855c198a8e30d08caf563deede611515d5a8c174cb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:86ca12d5d4c95c0d441ce6f613b10ff81122af0b55e30b9782072ac28296709a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1920f0d11d15d8e8188480d14f2aa34ff57690c0c91b7ea84e169514d70baac1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c36d60359bbfd1fc548344d3d6e67fa74752c621377552017029a96a8038b214_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e810c47591ecff59c57d85e609f1fc1f5e6a4b29c5f5f955c4253f6652a550c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f9af769a21c5b0b8e7f6107fefcc02699cb0708366cd5494b93b0e6f5110e874_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:11e35d8ba0e0027ac87fa56daf19f27f6026a3d02b2a84926fc9fd5b1a1caa1f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:5c476aaf327e92cd62db09140445fde6fe0ca4b6226c5537d819119aa5a6baf3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:677703f72a5e7e63ca9f94c71a422529bcd7983dd2d43c2d779ffb240b82ed89_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:820f1654bab9eadd91aeb99c2424a931a5ab42816d8d7752a446ae5d492d1f2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04eb561c13998bfefbfb40bd9a7a6b64742f4a18cdea73564495170f9b90fc45_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4ba1f02b5ae4eb13d5d1c60c18a8bdf2aed0b7c2b7fb88dbbcd5593929e2648d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d6a20c6e420b7c7ac3de9aff229fbea02e496bdf81f22e3fe87a0b0afa1e580c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e9f3112056b8dc92ff02faf1238099ba597170a523b75a3db0ee933dcc12d0bc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5a322ea3060b423dc6d2ea0f1d5bea4eca64b5abc54547b072c789e738a0fd2a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e12a2160c58e1cdc56e04badca0c527c8f0edc611be100bbd031cb6fdc03918_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:967ab39d5faad8692fad8539575b96bd146d7819ee8ef5b18d96a6130a884dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ff6e851d3e536b5b6dbac11de39f3ec2ab53bfee1e7212311dcf57d069fc05de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3c704187125896053cb1814c633f54ab911ae91d1e1a1104b87f05406ea0c08c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:400bcc7b178deefe8ca9754ef16b7641c22fbeb0d3005e6cce73eef2f988c442_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:baab74d224b34ac927868f9bbc278a46e9cc203aee9e966c19247beb1d4faeb5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c891a6d4781b807623bae5f2ca952800bfe9c2b53ecd4c6a81653195d753d8c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1c18c3ea801af94f185e736afd65a726c95504bba92fbec47460cfdf4d45ef4d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3ae6bdfcd063dc021e8a5d3387b0ad49113ce90f6954e6b744f5f302c811ec6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0fe4410a832cfc2463db22a4d247fd71c12786a3b4b6cc53fb7e2750baabd098_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c94e807755b6e4302a2e6ea344ca2260abb400732d3389590b7cc710d1525ee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9d43db187b01a87f955d1dd990c44af51d4ef5b00bb634a88049ae5deb33ddb5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ec3cfab1c8e94b719b19f457103e319750a7e599e11da2a77d1c893cd478263e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:60855601fda298fff75935e8e609e418a63d85e6e56c6facc5aae5da5caa2847_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9756b335ea00d9eb3384c52715ed5acc59068466f2a89949da3b20effeb5343b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fa7fe8eafd85b4b6c24d236def847d6974842ac24a92a94cc6e66bfb879ab0f2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbd3647534d98c49bf93d4c31d44acaba3847e641d6f54aed1c20571c59e8826_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2717b090a00279532b20c829b182ad04e173e07d9889920fdc75b645f6f8940b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0f47319554357dcb99361a79604f57b02274bf1ea4f11ea81946c94ac0e9392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f4cc72d34bcbb45fe2ca38f3d3fceca18a58cbbee458887a91416a459095ffa2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f602e4e6a9c684b6e66a41d7d7b2c0546cbb5ce46063a9817ffddc45b34b9c9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:6f6b7f71270bf2d337a4c6146c4d58debe7e3ca0edaa69b8ebbc8bf1d0d5da6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:72b4a126cd439ec205f730b21dc2073d7d26556099194f13152cbfe6cab5b55f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:75ad3d33bebc723f868c9e5d1647342b2ce789e72da7946eeee5336972ce28b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:80f043be882b17620a8959c65b726fb699d6cee8534782169ad048bd76ce8e0c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:522f060cc7e9efbcc2518a2e64be343ef8e2d77068c166c41bb2faf22d7fe491_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a09dcd1b29286ce0658ed18e1101a8a184b999a5ef0ee160de4d112ffd3693ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:b2af3c44ef157778f7be01dbbdcccebb70f34b9813866ce2d45125624f6ca7d7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f42a888fef1d7e437222157532972acf8674405a25491e8c68bd63c9968bea83_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03022e77caf385406b377b868031bd59a7db06e4c647bef632b180b4321758a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2443fb02b013d93ba9f02a5cfd6440f406fc3e2db52d9e11ab0da25030342ddb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:58d71bb320400cd32717e900a7a0f47dd3cf08967848704812373bcacca62cc0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:88f4a2850fe48fdd6a0119a452e254a002e26ef61774a14b6dffaf39fa0f78c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:272bbc9991afb1c3dac7958e13cd5d36a8b70c9acc4959353c85e145146138f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8199fc8fd04b0f504c15fb610142c18606b8fc5542346f1ebe2be73b6b9ea8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bb329b44698eb408a3c16fdac81fdda7c751332b4bd7826419e4fa43e11b5324_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e13280aaa5577b9a65ff6e99fecbe66df334559f2dd6c976d4a37ed380f91f71_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b0e2c6de39f60fb30ba06e898316f3b2f2f85e91cea0dc72db9d6d9b46ab9f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:84ad3ec06ea582032bcdf49879ca13ee61c16743d112b4ded397b048d9068cb0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:85bb44222b38a8304f197eda1e5f801b2de900015bf853b438d8d9105dac1d27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e0c6a8e8792dcc8d2ea3fa1c3d13a7f9f212ae9d50858ecc30d0ddf907fdf61b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:0c62731e8040dbe1ae70b36c395e2b5298d751b59825b166920a1f27ba05577d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5212f4cfee956f0272fb13105a0526ea145d5194a692d0146bb2ad7aecfcca73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b9bf2ecbbc4aaca34e1a610e204770d28535c54815efb8c8246218f0f46353c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7a3efe225c9de1f2350c9002eed75287d52dc3a9f54ac5fd8e655c433e98d9e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:187c06e67c92975008619c84892d40ff999cdaa41872011d01e68f39e1bf5d1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3ca572a1d746b6f065bd1aebedae55e89dabf3cd469d5360d5ae69e36038793d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:c255c10f17cadd651ddb1ecf7fdc215b4c5619d7eb51f40d8066a2359be17070_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cd8c264b86b6d3341efa6e225a407310735e327239655a8694ce4877f6c94cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:33a64b137e1f19773db0b9aed75ffdd3612b3f0b797376cc144c2cd38464aa9a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c6ba30190eb48253add3761f7c38d82a201897b5f356b4d016df1415538f2c8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:56bbf7adbf99ca137f629e60d4f71b8595541a3a4b02d4191c5309690dd54fba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:cc42ebe6d93dac4c005d029544be537c874ffc63fc93bd64aa0d1ef6e2e0bb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0805132752cd89050b7fd4b9f8f49a00ffef414b997ffd8bef83fcf45cd95584_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:11cb75986b40e8234ab4ab583313aa1a9e13eb5064a4729aa06e0f5c30556ee1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d648191a15d650b772d408a9f18f2b8d7c462c4c1fd872be40ef3647fc93d1c2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:dd69ba0d0558421331fbb45da89eaaab6f5627f06e103bde88feac2a46fd27dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:0c4ffb0864ffd31f8f4a257c07e38ba4c581f12273f6e66ca549a4a9c9b45373_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:75795d399c40f0f897fd37243c9874f66770f7748fe5441bd690696895400de2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:77956256c89bcaf90f81b6a75a3ce8250ca4b771913120451fd03ca52082d250_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cecd96a27261a2d2068883bcb9c7b13d9b7d7c51585c167bddaf94fcdf95e248_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:32807111a1ad116e07a3a03fd3bb5c24641bc2f9349e4c51439aae0ada7f8ae6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:399960e92d3565c5acb2c4f3fddbd547e99739bf7165989b1af728adc4d988cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:74a11a082ac9002e72284310fd63badfc3bcbec629cdd5c9ddb24aac91c1af7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:02e97ab33ba6cbf4e7f1c2e3a37493faee0dd5724924bc42b722f89ac5d72d9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:11684961ebb54d989f58ad4dce3dc1c617fc45439d1b228e34ded8d577d39421_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b6cc1f0005bda8ffba31e8ea70ce30e0ab31a4061352d1932765512bf4da5e3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1679058a5b9f75a328452a5a8ac7da0f783efd228b0458ac9b41b471763d43f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:bf336b36183a5195016c6ac42067230c76387c394738d24c60e9cf47174c015a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f0c7ac35b2403d4df73208e1c355ec9fab7b0d6d173dc7d139d8a37bd25e1d1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c65f4bcdad29a531867e0713002d194f13484869891bdce3e8b2c1c95fcf2c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:4b6d086ccf0c2d4681465e7c350f79c0ae82029378ab47bfd5a80b1021d1fac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:b84c20c24a72e8556b90c3061482e586b58769d0bf8efdcc54fe18ccadc27ce5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:2e3402f2d182a6db0e72ffb573c26561e1e4f65c142f7758cce330f5e5bc2301_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:832d6aeaccccc43437df0f018ae067b993f180dec826e7586f8c6cff03e09539_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:cb4fcad9e9caa26952f0f0527775bfbcd6c344c78b0e03b2c34d06143176dcb2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:fcef54cef2bad23561e3fefe9143063f05e033be6fea66914b71db619a6972f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4c479dc231f0a0da89e88f94eff19353b909b2d91aeacdf8d0898b6ae76010f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:97cc8891c42e6775fb43897afaedff8fb28f5a7a2d71e86f84a1de37009197fa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e7eaedad4a98b10dfa86edf8398d5719902a32da1399809bbca691f3545a12c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:efb4921da2ab734c7b4e5f10757d789777ce9271c95b58f58427892844b4c615_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:bf819e6470aded48ef6e53ff62f4923e434ef48bc4cf05cf5c32f3d70fa7481d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e45fbb22c6bb760c398fb8784df2910b020c7c09a0a5b54459770dedec251aed_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef1fb7e1badbb3e4a40c56bd09b34eb4b1c790a8c98369100c99313b533c0fa1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f7ee29f3d7ef9b6fd89595f7ab1f82477c9ecc3c7b3f13d7bb4e225252c0c42f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0693fc93fba0d0dff7dadca56f0af8f36486448f5ac9a48e86d123aafa1445d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a4f331067a5fd5d6d810de6afe165f6e03a99241f001f8d56ff066836bfb5d94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c3a856556fe29a6c6bf2272a35adf703c088e2c264747d6f533cf0461b69d4b7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ea3b2eaa356d5d4d10e819b8a1e4777dc60b56839c4636eaec7f8ed9bef08890_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0a39e2851b887dd3dc1a8156802548e04e49b708d75b631056567baa48ffbabe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:6d06dffba2488178c7ba77a94d289dcb3c3067f9f94f8d9b5c536cd409d42eb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ca876ccc64453613b408c72577d4a377224e0f253b79c73731a2c82ef8b0720e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:f88c40830c083426e6a1063a3379ba0b62b59777cfcf3299420ee9bda2770d76_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:3a3a46e1e5d390adcc204fd244d8fd8e99fdd17f0eaf3d8a31d2efb004ea6086_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:6f33623bee3a1eceb7b7b7bae569a74b923d63cff6dc6d1b9a7409a67dc7eb81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:61c31a804610ff5e28a88519283ccbfb20aa18ac4c458deb4a7d16f4355ff177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:be3a631ff09cf4c8ceb3faac444eb9f092b685a87390bf9b174f197e24d58a62_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:da0418548083c58a61ba06f3d926876b02e7b26574d01107ae721032f3849222_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:8271bece0ac65f6d63047bf524628bf3093ab2367baf2a098eb76e018a9950ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c9f97f6dfc5bb89005aac867cdaaa07c170db1b58325dd3025078b732ee8ef8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8cc865bc32f24caa58882fbee73f14a70008a386c62a7ed7145b6c977f51d9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ffb933e7042de2f9a35bcb3a9345817c1b1745af190b2b8af11f8472a988b97e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:0e7a8b9d05af731779722feb5bc739a09b1040b53bd3945a381355c8b5d4acaa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a2fe882a84cbfc62b3a28b3a8cc373a4e1501e8da640bd51af7d231903d5a9a7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ca651ec4493e5f9edcf2ff344dcf55334eb1da17bf7915ece93ecba87b1d05c9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ea2afccb879a8b58e56eb0362cb09ef9ca35273fe2e14d871aeec083af216d9c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0d07cca992bc9aa3678053bd915e679d3c3d4f020f17d911af9bced4c2abee2b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:149d66ce5b3e898211e500d00412a9a7f6224fbcd5fffffd0a7fb8567f20ca01_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:941857a1d27f1eeeaed2c6929af85641ae1da40a2e951707d556e167f08e0f1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:f67e2be2c2472f77239a6ee24889789f1ef3187ad089aedaf1c82f325c695c4c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5f2fe3bf81c34915b0aa4375f3e389cde2f3f56a4185cdcca12414b6c8eb5d53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c4b4ec98ed5551db19f0584c4eaed8b54f26de989486261c1017982401804a47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d2de24245b85841df37e0d063114d35b0171a736451b169d447559cb5b594c54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:edcda1cf4f61f2dcb04e6d4f9e334b6bb239f151bc20e6297af6227245e3c213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:205f81f561997730d7728b78383d4565882ad4d1e876351358324c4b3b9460a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2af1363e9ffae88ac19145b5797cdf07f4b72711b0d1902603b9a33161e26ee7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e63119a090ad86a031102927f13ba90fb1875dc4ac0cb0d9aa931538cfbff70c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ed1e96e68a4d3aa249d65aa12b51709786f00a2900b61cba5e1569648210ebcc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:4895bf3492da904f8fb8ef6ec8edac07e6c2abba8f27109b4ceaf7e58f24cf83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ed7a2a0db24526fef0b0b21ac5c857cc929e2fcb05af62223378f5810bdbbf50_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:41b04aa82f710aad06c0f5d9c0085dd4a137a3bf5a1fa6217269772bbf0e4069_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f506615cf0e38f0d56e8aab10268ce659249224704d7e6a45c40d536aca588ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02475dc4e51153ffcd0235e5b9a70d24cd99ba6636f821ef470abe741f8adccc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1d6e6155512d5ab3650783433a67d844805e760c8ee495d671f84345fc16eac1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5961cfa69ba4a223c9a7ad6d9236635e11ef78e65a5906ed7fd5897966aaf6f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e617076bb651a4ccdc7da962fbe3b74504290d516b98197b1e315823e6eeed77_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0e76e39672f106d558f210ab280971e5b200bae4bd8bfb4a88830a15007f560b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:594e4ca2a11893252f806e4499bcd71868a0aaba35dbc9f0dedb6ad9273ae2d2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5b93328ed2826c8b6ee2c8c95ba65df0152dc3d06e7d9c531a855b5ff1444795_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9799236ae840155f6138e15f080a30654293e9e112ae93054d046a5882e43a64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:49b0af04dd5eb92d87e8c1aa62ad1a21ca937dc3c0aad691312c21d670f35cee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:52de4e3c877c22c2e5b39cecdb9992b390c3a9f924a67a20a213fdb711b2d6eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:66034b90bce5bb52f1d6f4ce0fd4ca0b476c4345e21af36b8dfe02a40cc228b9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fcd4f32783510721d8e1a61884428d56f44b175c8786498f13f6d554f969f1e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:59ef0af7d3d657562ddeabb3f518d7447cfd8c891ad862a0dd855ba575e2a6ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6b84ba3299dcd776ae96b376c2fa76aa9cc6539e8d1dbe15670d1dd897cebab9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c6f533856bf4cd188da4d60b5360056bd7d509cf7589de2ac56a54f436754d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c8cd63370d912427e3cd3f0bdb8ad9195394b8d3a56c928af95a8e9c88ddd78c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1a005013819972653f022099ff54729ecf8eb7053d3eb30ed2e504140772dbd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d02dfbf56facdc1558be98ad80b0a2dfba92a79b6d634b0b6d1befb824863c02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d9d6997740ea69062d2c9c8bb192a0d9d153f30cebb014bdd9e9643cd3ecce29_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e49110fb2f6d5ae11ad2ad489477f8f18c859851196cb123971e50d7e2b6f830_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abc13bb343c6ec5a68f4987ebca21bfa79769952c0f3c23defd828411c961c92_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c95dfe05b3340d3ce45953b01297bf464d0a35b4c4a034132508164cd738b176_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cee318a29ef3e84eaaffd252d32a42c10131ebc7ba934c89409d609600957a09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dc1194df9404ebfa5bf858fd3ad639562a8ec70e87110f7af0408965db4d6ab3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:2343a7a5c5beb705d1c859ea9957213be3065719bbb97de5e863854f6019c65d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c175cd05d90606b307adca4181fc2b289500e9e8a1b65174444ca9f620967726_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1c1b5eda0f2d1f6f5402e5083573fae9f992859153343e2e9f0acea2b401d7ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:d8c8b019122a5ffc106a4708b712b3209fd5e0d41586c7639f4bb3a4a0cf7f30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:39935d09f7f6305e3663e53b54111f98a4637853e16dfd046bc1aab1c0f1d4dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7b9deda017b6df1a88417946642a9632ce50ab9af49817c7f97c7a52004535ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ba4801a2fa45953525ba9e30ac1d4c1663bd94603c2f34aaf6580f189f06d89e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:16642e80256f321a882a1152c8302f0e0894ea7b0be2adf2eada9c415453f64b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1da2a785a86a57d19633faaf77c3ac6b719578ecfbf0172b4da17856210bf6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:aaf76a40f2199d37e8de595bbd40283347b27973c0b1e005f6e5cdd7ce17e3e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee8553cdf259dd76dde82ce708d4ab15e09114802dfef42b945cc2cf3ccec268_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:58be071f4a84b4fd10384ba6d0e36037a5405cb23b62aa8575ba13f5a523339c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7be65a041870dfbacb1803f29ebdb2c42fd19735ba0b709bb8b5eb94b4d351ae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:994214cfdfee89863c780fac43e09c214367e31a102fe7cabc40fd2f47770895_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a2bc78f5e4f6eb85532cd74efc73634b505c37bcfbe92784ead353aac20041e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:41f5484c2dfdab601ff73579df9e81c6d81b86808f9afb040512bb9472272933_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:918ffd5c62760ee30d3a6874c5b98cf8a82e2c471fb5a9df501909c4d671e9fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b3a688d9b209d296b0ba1e7fa96abf958c5a0b4210adcc988f3edfcc5297a752_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd7dbe973718ea1bb31be1b8f8bd64b484b8a8d9884315062c8a2ae7471a198f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0bac5395c0e6ab9ea025cca0f257c573e69e40337c68537523ae5edb19678a17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2bc18326f11ca0c8d22d1c271c08e917fcdf725ca1392f6f0d2e986e2f0c0d16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af8b53289d76313ac5e67ea76320ef29a35202add570aa0bb2cb93c193395a34_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ff93171202d087d157052bc439e4ee3ff2598bd0db5c283ff60ea7b2b7301f09_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:3f99185f9b501c9b20bd9630fd1dbc3439f24eb7627716af378b34e0832a5ed7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5750bbb135d7e4a8f4dc9368945482c52fc703471a229ff4a72c8bf6897fdb5f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b378c61dadd5f5de0345baa429fc495f1128f2565e62e2a1f242916eaf98acd0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e64dd9f5cffd7996dbd1b1bdd6c8c87fcff8cfd76b4b3519f25106a07815a90e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:139a953ca41f5f6246154ebc7af0d41a8f020f6b32037c79c7546715febd7c2e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3c53b67b58a1c16c3fe66f381b63b58270a47eb862a86b5136c2b7f079719ed5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8987fc4a5938af734825da40a55b4ce6c2f1fb3c1b6994b3d91116345445d533_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fd1f5c6f4972dc6800b0a9f548735e022ecc0e6204be65db34c09af4cecd5d49_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0ac143e9e3d43617b7f03a809266611d792ea7b900a021b4762d11fb5fd12f90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:58cd2ceadcace7a4eae266acc76fe2c546227008e2ff5d6f6ed0fda091eb6142_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7462bf2ba77cc53c91a5d7e147147aaa3c3db6bca5234af4fe3121a02f179013_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d1f9d99851e2c6a49edfeda810340b8817bc2aa5eaa8a0ac0a187467c9549c7f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0ba36172ad9699a9f696115f90a9c6bc081e6a054b4fb1d8d55359967b5d0082_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2bd84a9c1c265306d31d758156ad3869db8c05de249bdc91d7b16edb08c0e13f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:35bef8254da919cd9efca0216faa9b39ba2031726337a1acf4395897e021219b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8e80b9208925d7878041c5f2a1c92671d5849393919097e44f5f6636ba94e44e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:28130cae84b0d3a3e93283fcd7871d0424931d1c7a6e69595f1c932c75fdd5de_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:371e225fa397173a943fd9bac14de78371597f05c0c5f2e5560b411eae08901f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5ad867beeb305cbca31c0a02ba34544474f00204ed0afe016b5796d8226ef28c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cebc0d96e6c062c93712a195eee23445ba83a458648a18aa2fd3b85ea2edb36e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1c36b6a1f5bb19bbe4b2eea9c16f2148c8dbcdb6a02e181e7891041cfc26fae0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:65fb982acdd272356d08f74af1c0d0845e309526fb380ad71d58cc6fd4b32e2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:823e10058e3aae4e38906963fc3bf927e0c9c1ba7d7cfa2cca15faf94fa0306b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a5b8d4d95ac13cd891fd5c6a8c13d313a49b93cf0298b664032358d13a896bf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:154ef97ae061797b00b2d5e6945e89103b331a16fa7cbe085001be9412f96ca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a5066f875b381ebd1a7f80fc6330e0c0971a1396bec98c522b78b623610da95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8d3346a2cd3ea66641b538473a0b4b93386664f001f0c4a30c0d9dfcba289b2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4a26c41ea319dcb7de31abb620c4cc9f95464b0657c94683edfe797c9ef376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:05697056e823a9cb1b3ea042b1a67f29660ac6e709b976572c1300eb3887ac94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5824c3cd71091f4a55d628fb95d3ca734ea8c8b6719c71c824fa449e1c99a6ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8fd4df2924c9c3398e0470937350cc6d1437885532caad810d76e3fae9477f48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab979d0b811e0e7a7304363e280ea8340463c043a6a2cd79f635f45bde4c9ba2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:420c62b311c7c374ad6fcd202f2a5a6a6736f9b450e4b32878783b4bf0fea397_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4d6060457cc27c386a34f604fc6f10bf6cdfe33337b08ab9c6b25d689f8705d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:518978ec6497998a74307a24cbdbc1a082623ceda3cafb469a9d6055fa5a7927_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ac5a3bc2ebbad3356ae98c8ea66289812735725ef487fc191806c1ec8ca744fb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:723d79bcdcaafccaadff566ba341a4579d8bf517e85242376fb99698ea9fe97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7d37fac9e0e547ac6c383217d276d9a10f2e13c237e16011fd16d42c4b3a287f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:8387cd1eb7879ee36ebf454067901b23de56eb8d1b318b77ede0703f366cd43a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d79ff6bd125ad855ea6d56ac0c7657d07e3124f76326e09db5903dc2bbf049f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4f271b012a73fa4eb3450aa6f6b522139f654ad9b3a6afd841f0411bb1ec82db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:bfa8f7eb32a1401136b3901be6bd182e7317257da19c7675ae96aac5f03893fe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c943fb9b12f8b3f81b8beb64c6402980c5eec8fc8c5819ba9c2284564e1f258e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:d6ce7f481e66f24e9f21d6b3b54f11be79196dfd5b449d5cfc1dff059e4b3369_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:80dde4c417bb0fcca1fa3055914d186a49c8ef43d7944f321fcd82bcff96d035_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:93050f7cf171b4e7084ddd3b7a62df22645ce0ea9c12f22aaa906718201892cc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e78ce5d3c31b2aed1acfd267d1e82e6677fda6e7edff5240db512aa03914d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:50c115ec09a57c1ad9b7340ec58eb7c6d854299f03cbcb5c54d24e46172619a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a5f8e0b123fb27424f452a12eac75bf2b517a984b80033d3abe886782b12979b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:a934d55c180dc3aa415c6050479128c923445ba823bb1522548b463ae30e02b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6ed53188853c0dec61bb9cd8f01cfae5e7ed1cad645a888f79279442fd634668_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8b0546619cb560baf30a15a92bc55b087099edfc3c90289de555c16978f440d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:91fd3d33e4a53589d9e8392742915cd4b23e0a8cdec099d49b0df15a1de04c30_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f481c63bbf5304a0ae0207ad555b45cdd75ce8872f4ea2d310f34c5f62de5c87_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3348e8aea25f7eb25518dc9fdad459e7d29a090388c9db3d2ec8de69c9691fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:51c4bfabb13b2037284c063fc31998a27a1fd10591850122aba4375423adef09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5748469e7e383df811207042906c1ad233a4ade558a3c7611ada3af97b9be56b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9e25cf13a404659f5362345bd5a520bb7a93c81367caac44c72a063c40d7704d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:548d94d2459b4e88a86869462996b1797b9538d4c568fe4636e559ca695419bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:67bb90e9bf79d10c942da48ad71f641248c2c8810855d9e35dedc05fdf603006_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b312006b7f50e4cff361c084f2b613871a19cbdae4fa7138410c90acb51f9afa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c423869938e292d171ed73be7fab3714ad31660f9fcd99b3586f9bec5f02d98b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4164a8d2f45855ada85837b7a3b21599a71ffcfd6a86c65d2bf92b08b45f3dcd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4da97a4ddb49c69e22c394a02ddec0f0a97ffeaeb60245d87dc6d76b626cc915_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:57663bf90298b1bcab102039c9bcba6f75f9115a566599a5a338c9eb4c1ff566_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c1ee5997ea9ff0f70d0e718d24b3dad09910dae192a38b787992ac842f6f0305_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0901af0daaf87abc111911e78b272e366b9e2deecc428998c143139914e8617e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:11be27c9db573d34b888b08a52699909aee9c730cccfc8460c0a3dca618193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:50fd544570330005fa3064f5b3974e99ab25b58aa33d995aade2f66bcb5d06aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:9672457bd038686f28fd6328ce5fbe473e50fd8badcf619f3bb9b23aa5e21130_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:60b60646a956ed2e385c282556e46e3a52f053b1027c411d62217f4392f5e6c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:61ac7177faa34b71674b8c987b3eabeb0005ba6b0a19b6ccdc3855ade617b32b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f220e1feb0754861211110588652d4018e1b071ee5e0dd988d6a05e6c8cd4cb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9d0486a1b16295b6d07ebebe4c32e7c5392a716489eb0affbae45d3f686c5113_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:1bad0a217e5fe208ee1080de2ee9f3946f9f92418e8a71c472f790d0fba98a28_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:766ad28f8d113675af3804933d95cbfb7c60ea9c835f1b1a9c7b50f8bdb0bdd6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:96f11ab7bfe9d16bc7dfdad06b97bfacf1eaa0babe584b9534dc918aa0d3eef0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7f4df30d8425d0349956bf761a24aa917487091bfa821d378b0cc5a9243bc68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:520d319573d1004c2938139cffea0737b5e73293c508ed56a71a5eef668dec2d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5b595fee007ccd0a49cf3b07e8cc83cd61296d8fe618646861c867714ea6658b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:dc1432e0e667a3340c0d7bf111d5026ca94c2f10d20b5acdd2835e4b2377c430_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ea0e3937ca44937a17b42b768652cd8bb797fdf83809f4066d1d267ba9c7a15a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:423013882f50149218f9b4e37956ef0a9cd675f3ff12d49ab6c641c0b0d04b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c11885e091bb317b3c02b274956c06dbed94c35b38efada98a028c5e1c44c65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:adeb6fa23b0189264bac56347d8081fa0f2fb3202a874c53d2decabbd190f562_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ae81f5d57b3da68859324525cc0e59a8dd2c36c1b6abc3069343c751c0fdc07f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:03cd48278fd42ae048d12a2e1505b3778d80fff416b6c390d648b5d924bdc548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:258ea3f4ea75cf09f3145835f84b4028b59e3ee862b158682aee71cb953ba4c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f4713269e6313515d53683fc0e7a1459e4205468bf2099e2754395d1e9ae999_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a67e0b6c162012efa5e608e194d0cd66761cc9801af607ac161c3a82ed4627e8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5fa05448584609addc1109684a83e2db679b6105d245551cc7ccc594ddf826f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7db1108e1578506230788325621d0366aee647927621592c4ab6bed0edb1704b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:99a66c36b63351a45fef849158afd8f9faffd11eeecbcd094cd2c24299f47ac7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:d637970aec9f373847591109aa1bab33cd7ad5b01abe7d6dfaaf1814a734a19f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:05f800c752416165d08a4df720728ef5cd5393a51263e8635d4f68ef03645513_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:40a7f6af5194aec33ec11e42e945e2bf9ccfdac85acb08f183e93aea2ddaeb60_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:64d9b877caa293029edb8289801c31114f935fa56830552f2f23de11db7dcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:79b8a901e778a44b95b987af87ee5f3cc02a1c5d6c6105d1292ced75ea0bdb81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66a29b62443e09715fe5287e12908def820bda74de7206e406b4928769cc0023_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7bfc379ac8ea30d72c8d36ff1b33e311a11e5463cd16ad364837f1961f2c2f81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:90e0a875632e3c0dd4afc0d12b90b6e52b75d60a66768efa89b0f5715e278a71_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:dd92d8ccaa0841bf19dc3f1b49ac1f5b5624f5c103a329d18b4b209a08102cea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d2beb62d0659e828cec7d4a616995269ea8bf555f81709d7f0fba8f7cfd97a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5d442f5f85b7d68480ff160548e1c317b5bf8fa275c1cc2a21d8c6c6e569219b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a5a0d4518c5a03d19c873b61111e38b7a185cedb9f9c4b63851d325f5049eeaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ac3349a1045ccbd642634f8eee828118a76ce45be6529dc1d4e2d461a5677f83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31a8711b58ab559c9ea5c7a2208c18d7340542c0afe0a45089c4b25c93e2ec40_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5d9a0684aa8501d761147579c365d172404960c0cbdb4b35c330130b12236f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9192a7e5460530d7859930c8dab0c76067e61248de97ab4f883059d443cbb6b0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eb02a42e7cf4f781244267f1ab7642734bb20ab139687d93b1a606bf194895ae_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0419d697c8f6eaa02f4a8fdedb01f5d184938201154ffc0909452c799d727489_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:105193fa84866b9b9f9582dbff5828ed83ee174d4f18738a2bf4df2067efa1c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c84da2bbf273e22f7e1af97e28b1e29ab8f8488232b9cbc3e3542398010d770a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec2aa7076fd1199c1cde536a0a8ebdcf170883cee7fde4e1f1ea0cc60ca71a61_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:98984be4a087a501263fe0a1a4314e1f6009c013873c5a0f35fe30f5705b2d26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae0fd5d1d7a9770fa33061d53adabbf9c974a02aa82943116e081a83f2149852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ae9136c1a3f9ee5401542f3c8f91c8792d031c0f38ef81477886cb8abb6d1b6a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f6471333029376aae6528a15bf3b1365f0d7d17722f4eb20d62e691c9ad9b60f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:3a02e19262f33a4660d36fa29628732f84c528b57ea78e38c7e3276ef77f7093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4f9fd683bcdb01b8d2177ad7d86d0e87b7ab27b69f789c6511cfb584eccf66a3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:71820a652bac720f2136ad2956d9853123af001b02d0619ff8222912a979c3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ea1d3585c24a32f4a385e05a823d2c52374837b46cbc3051eb79f167226207e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1511dac931c4eb08b7767e8b9a2d949fdf06850e59ecf7231d58e8e71e124723_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:987bf30e5621e764de91ab437bc4773aaf2db82a5650146b77cd21ff29f0f23d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:281dbc52aa1be91dfff12da88296c35ed1be67ee967f37b5f79f72acb5440c64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8d02853710b88752dd5f2dab6ff16090a215de4fc836f27b034fea4e26957511_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:be71c7a6a785ca0d617f144b72cb5417086159a9dceeca0031f7b180eb67ae07_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:c3e585a156eb4cf619318ffd895fc747774a1c7424d5d7af4276709de551eee2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:6d0be91590afad727e9575fd693be6f2c24ad38f6d9a933b07e5c73a3b5f1164_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7522f72f8f9b056651152b30b10ec86fd45b9d43a9bf9fc44949709e8e2609c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1ffe9d08406ce3ee02d00a7e58ce578174f36db09a8e214a7a7c0a66241fb36a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:744964ef95695a0bb2855616641663ad7aef76a37cbc7ea638f6b359bcee4961_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:774c969b6fb64c3288de8eedddd2b0374123125092cef2daf14109c6768fefee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8f22006d563bfbdc0c245d1dd33c461cc93b52eb0668de11b70e2e9103da4856_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3eac8e73b5ae4e8d27c105b06a99a88f593be2b98ec5caf979ffa93326c8921a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:84f90e7863dd7aeff99190559243a2192f74ff44ef80bfc72b4144dfec1e014e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bbc4d135a6811348ff0d2b3d0057a99e44f2afc668f38222bda2b474ad9a3abb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e9aa605e658cd24eb0b9c48c017b2a0dac19c30c7a0b6c90962907ffca26c3bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:52c6d8285bfe7134956cd3141f83e9c221930c646105bed810c84ff979781dce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c6c53aa6db7e31a5440d4195f00da63a0f8c135227570f2cae41b3c0b22ee17d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9b38c2b2dd3ca86944af71e7d5fab3632a687845dee45e72358c1a42bef1db3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:eb8fae2897527645147796bb1cdc472f3b65b17e57f921ed67d68af5f323e646_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:96435aedd5a231d960986aa0e6be4e14f09356cde037b2fa09090651f01d2a42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a0d709384915332531edc7eca88a1332eeaa8ba66f110bba66239c589598912b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b71907b1f8d8fe16f4470b67e7537237c71c4b17f0e168bec84d5199d03525ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f1fb19ebacbb7d8201f60477ec27a09db0f24bf5144223a4cffbb215834b4e43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0e8628012fab26ad1aadf63158a0245ba7730a52b3f2c1bf65de16342fdc4230_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:52d3eade97f7b731a2c1c2daaee64bd795e2490c15bd573c4c935e3996a7c9ba_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:716635878284b3456bf729ef89baf26330ed81a206959f51295b9b57ea1b7740_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9fea7344835ce3508932545cea28e99655401d7fc4fd9545e8ed785747767530_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0bac5728ff3b211629e0670a7ea43cba36b19838e6ca518ddb79871555cf343c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18df53d207f764a452f30b488eefbb202bca5493023433e76225c6bd75e0eabc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:601c830cf232b3f126a054ef104d1b7e200bfac152c198764dbebccb09af52bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f62d8de246b74162dccfc719cd88326481bc955a0aebfd01c7228ec031b6c39b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0f53019ef06a3c941a999c218e3187221b3b5b3aa6c15c1c5a1bec33a1a2e0d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6ba52c4247f726a0b08feaee3e4671c9d57ffdd2feb30496045498d7380189fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:89dd5cfd6ed9c4900b1fa0045741908168bd1fbb6ef269879b95d193a7a8a287_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:94b2299e12b086abaa97e5e8bf81dbc13b8014f78090016579afa9beb404428a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1bec7b767ef92670b70d5c7da1486100b2d8d715a2207a07623d6fb0f300216f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:5e486a6125dcd412011dc3ff592272b5d93d57ca283ad565cea7ddb3e8b0a39a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:846834937fc8101ae71ac8cbb5cc1f35d37a187f6ed58d4cf7956d9d5e4e362f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e5f5de8a48bae44fb55267f578b6c3d4e96c67ae9f66d22784d3accc678eea73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7b3e0710d1ab99bc17afd2a57d4c6378ea2a3619f0b385245dca861b0c37a46a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9c9b103f83a3f294a2084c5b0e59910c6b0431c589dba7c15faa57ddb053111e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:aa5e25d0da56a4b2904caa74208d5e0428d45452e77894f7e69c65125d86646a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:bfc9c343526b3522ae49b88928d41e2772c710095074b8351feae1e4c48546d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:29f9b9721f3996c51cb27e2e4c8f5a34580f0b985fc1a579c585c9e6ef692dc7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e3a821dce7af19aa62c39a1a8d0fcfca124ac6892510e7584c6c3c634d46de0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b66f986de9d58cf2cb80709a3ad161c2cf7af1438658d871b021cd1c7e792381_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db00345b45f4b63951f63b43f78443309f82ce0a0147e26029dc1e7eeed152c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:06d238d91aaa7bd3b9c2c77db29502d631c934002dbc4da46d81ffe7e4f397c4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:11a26add031df1afc60369b9a1c709b70c5b4b06f2eb1daa80455a7b07804a9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:80ad0eac49e9898504db0c9a6cc7602db03fda997416a58ca726ee5ef0e1f290_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:e913bf85e9c6f68e5af8ccb46d14a2229e0a777c56e6d28f9c62dbb2537ab759_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:19e5ebddb0502fd59f47cc91e5118a9747bc2ffe729cce5003bdf67cb6c1eea6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8416368aafdb3fd912f1e2aab4b90d0fab0bda2f225d2e481f9e9133c8855c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf9c88c0f207f53a27a2b412ec2ba81c574cb2d320fd9d848bfe1f4752ece94d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5373b2d929d1d116aa529c47f6c4dcb4310981448e6aab6826b736f270e562f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:4299ca46f2b96d29fe4eea1aa991983f624cca6aaa269872f96f5be8f9131dc2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:7500cc3998a2e9b620ced87d9401c84f8a244f357da99ff4e2c3a0530eb019d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:df7e3862df2b0cbfac1dae6df39962580a8c517fff8b9f3d423d5d9d5d5dab00_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8784b6a507b4505486b909b87262835fdfaa5e613d3b66375d7a1829cb311626_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:f3e679196e4170e174fdde3c6dfa246c8f3220ae262cb65587b5b5ee5f4dd6e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:425432c3428529d80f55ffb3c34ffc63168df96b4f54a8c8d37afb70cac67e57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:333cce13da4aea02d24797bbd07b938b910d42383f5ec009585fa1140a1d3eb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d82d30795a56c3dc9ccbf524f7f59c0143c1bbc2c0ef22248be23727dd90f418_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e19ecb6dfe1d00de520b633afd8b279edb4235a27c1ee4fd28ebaf97bc860080_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:f0cdc531b1a797d11d8f66e4bf582b82e5a69b787ab21f7a25f7bcf0bcdd3c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:10021a6efe959d2cbeb4cf1f91222beb163f9bdc0d8d2057f1d0e96c87eb9022_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2af33fa7e7b2cd28a248e636751078191a16bb43bd6dff80d306fe947495a732_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4ada5fbe0285e7aa948d8ac343237a9718f3f59cedc455ae960518abb0abfd93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b8c97711cb8e8d80c1e837c10335c5f745e65a4b2b04842c31b82971ec2c6616_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:62aa4b7df94c6fedd9bd8fcdb5290a6610495ce6c2046c438f05e1eeed5957b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:64af83295ed795a86e0bf15db71b2a1ddbfa0129c9a53c2dc4e95f70b3867601_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:92b3ee7b269424e7052472f9f81f034eb931d7101c258c4e9347478f9c0cb065_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:c03dbfb5767e80153c20a16f464eeab90faef842f38b5b6d832d14fa86b90307_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code"
}
]
}
RHSA-2026:25195
Vulnerability from csaf_redhat - Published: 2026-06-16 07:35 - Updated: 2026-06-29 17:50A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:15a7e0076980f322a7272c25a00f0bf6ce6fdb31e34f687318844f90a9cc8f79_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:560dca12fdb11f4705c523bf35f13cf4a13bb61ebb6aa67d6f6ee888803089a5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9449c57185bc815790209a3b6650386563c2bed58eb957030a0bf4a8f53ecd35_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:2c94df4cd32b010ab7d37189f82d7f96e680a555bc111a92cf2afe7d623f769d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:565587a196a83dc02ff22150f621205580ada0c9a612b5ae7f81f7a0cd840df2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:86b1946b0d17f8a8362da0c4a92de579de62fb8ebbf663460d004ffc3bf37b18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f18bc8f41b9a12bee6914be1bc0c0191ed6c6b011b72709e39375e2cfac85577_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4957fc95a32e9e58e7574bb054755b0e939f69c49a00d500bd99dd342ec2108c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a9db266180d686a86fbdec53aa1fb5806fe6308121017dfcb61f064efff275ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:ac7c733a1d501bac474d98900181e8822bdee6cb6b84148850c6eb9e1c4562d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:adcf2604fe70820c1e26fc96914d6291072d1df557e635e9346e20742aff893b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:0d5237572f55e577b134285cb4b9780995693f78b9ef72793644bdcaef395591_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:470c1e99ea40d4b49f8fb2de6b60632aa799e28ed39ddc44ec0c70914041069f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:9dd1451787189cf9448b978b1595e21ff5d10cdf4390386c7711ec3b10c90b54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b5edbfb87a64af390d3c66e5f9d6bf47cfd3aaf120ceba18dcb7739f8d748514_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:46c20bae85f471cb842c770fbfe5754571abf33f269b1b33a4101aa8338159d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:abca6b24e30139fea6a4c8e366afee6f3fc692d403e6ac4abfd7f12b8112f079_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c37d9b5fb29ccd67c1188f8e96ecca8da7b4ed7dbbb5bd5cdb75ca927ff9f0b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cd93e063731eca0e0a81af9bebf49787dfd37548c9c454e7ccd22353ef7ec27c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:1df9e36c7afa85458daa6512bbd91b370d60165d348a49c2dfecc716e787c926_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2fd436736db0a34557db5ddf1eff5a51cb872e5bd1fabda461cc5f531e57a213_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50456d037a3e6238cd4f047d7a4c229987a9b4faa2d2de28818c3b4229fc59a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8a058e9269050e05ff5df9bbf6c92740c1ebd081c9dd8071e56178763bbdd2c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:66553dcdeb9b568e7712f2888d3e7312b475e06d0ec86dad3cbe27ab0e3538ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:8b77f098ad594c1ee48495ec4a0be0eea721c2940bf293e7b4a2f66fbe4a990e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:b79ca32b7852162f42f4649cc00babda1228e074d5c2ee48f9748df9f9aff326_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:d79774c1ad2355b71d68b76653781a13b476949fe5c19f047ca1f6d0ee3dab80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0a6b23cf1028b858b61334e3d4bf504a7895517373d28bce10c94fb3622a8edf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:483f733cdc78157f9e1c07c221b04dbe56dea287e5f1df2c71ac7fa9d4add7a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:75033faed2096248c6cbac42d1b4be9d35fd18d08a3a48ed12b7feca131a3d3e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d64eb22891afd4b92c9d7e889c3d950895c99bf2916c786f61feef6d58f6860f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:828073b9004ecc533e43897ddd0fb845feeba262c48832cdd3083fa2822229e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a78e8078414d4b8e9496d7f1986a6ac6a9a648b5e561415b563bc1827d870ffe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:bcd4821d104293600d92ec3efb0967baa2e396f8a192e6b70918a5d0f5fa0272_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ee1e0eb1be6a39cfb2e6a7a3597f3ab4d3ce99c837b0a7f7b85d3fa8fa88a040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:3c7242b0b822a2aadffd9906478f01608b538f673900163a60fcfa086d375906_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:6df1c2bf8515d1af6afdf92ce3b2eee4505b0adede1d4f9de42a461c294c3af7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:2ce01e19a15a61c01b73284263ccbb0f58f8f08dc8322c61ab3ce99af6436b19_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:7329a64e3ad7c0661c610ba516a1f02bd0f988dbd0ac552d7c60f90a2bafd5e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:78ac87a45b3ecd7f7f11af6aaf9f0e6b043c4e1b9046a3e8486a70db2d5f63ee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc11528e117a3437e92608eb9c4ece51ecab1851ef976365e11c3a48cba04d4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f0caad7678dc21d891d18b0ce27e5b08e103f4e1196b8f0bd09dfd5f3aefafd3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0c909d66cbf969cbe11968a07bc45b88ceaf48318eda1383078eae246555c3af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:69be0035bd4d768e9cc677b22ee92987edbc82864153836c52aee7d172c7db25_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:714de7953e67ca5939f7f29b6646f808411b6aa19c67bb71c83bfde43ec6a135_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e403974b7d6c6cd723f5e743acca6f69d9827ee10112b1104e2b41c6ebcf2840_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:43e8b775d57b784cda9d69d68d6035e28e2459c3d29b8ce1a518c80aff640d70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5d2f312f0a4fd8db4299d3c213d8bfa9281ec7d5373b96490d08cb539b7eff9e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:6a47fe76b8434cdc85523de45f6d224f081e3faf8d3a5cb25350c01e8ec9d1d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f9790d3b627750498a64c219eaf80fd45687f06de957d61447cd7ce6f407d579_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1afa425a522b662e832d1aabef58887bdd7c0a7fec00a2fc2dbd733ce49e3d8b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9670c21a8590d404178fc4eeaabef6a92fa6547257dd0f8f262eba896ead289f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:bcdfcc44aa3a4e76a8f370e653c87501146b39fbfb1682875e1378b26377571a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:fb6b0d958637a1b1293654f6fb771e375eba628f49d069b6b23a8655ee822207_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:232d37bdd66d0a677a72df50998deada932096a2cf4850c0101837c47967dcaa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:384add612089ea21ef5a1ea14615f26663f57b23a74c1909165676b1fcb320a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8566d93798ea66d637eab1872a29f29753f5779785e0c9c63c9ec1ddbbbfb231_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:c66f2c708f32dda47f1f7cc9a1ea7dc97bc589265df73e589df2fe6693c7e09d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0067b843e3534040ef7620715c2f86bb141882cc32df577438aaa321f5141596_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:077318abc98d9cb1cf5e3888f10542895758badf63b7d1857e90d8fb260e10b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b47b354cdd0b1046cc2ca7195520fe9929d25a258cacd4ddbda0394f030cf0ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:d28bcbdb922e937509f26720ffbbce9cc9df5e2a2cd2f7d5ce4f26ffdc235b61_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:23bd9724dd89ad3b955d02ee7c181ed2323dc517f62642d37171e84f7584c796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:3f1915177c59c6d5d1956df6208425c3595bb5fb6911cb9b4ffafaf84f6617fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:c1b4b52f442b0e953bb147f91e66b6f8c9341d7517394bce17b785fd5711624b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbbcc6e31faaa1ef83e15354f0be0ed2c8f078e6ffed2eb4456bdbab1704b480_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:74795f21968adbcaeeaae9e6a8b072d80749cb8bb38e93161f3b0e7badf2eb15_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:d9800e6b0161cd0517644746a5aa3381da7ef489405103d47e8cbb23cfcdb64c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:64beb43b5d803f1c72e6bf3e93cb080510cef99d97ae4ba97c1b2ed5373a3b9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:90c1b58b7b81275f3e21c2b434927c09d35850058d155faa640c4887c29a2ce0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:1379072258e060afea437e8e868ef778261f9200e33ac50a71cee158f1966e04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:54cdbf92d06b09fa96db2ddc700943bc06e350b04b11ce6bb2efd2d01be69724_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b9db0faf0afd5c15574a634b7471267f8a91e1d7a75d02f757a42f527c0daaeb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:cf5adcbc1c3723265dbd4bd5ca32068fdec7d646e1f29cf89d1dd421174b1e61_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1da397c213c1aabee4f18456a10bc135248c4c19a46238fdbf7125ad099c6bed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:434c1f8becea09b3c603c7add8f6364e7407b6938fd2075cbc54bf759197567f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:6c2483950c50e5e6b7301cb63dae09e7aa2fbc2289375a14338b3f4bb3850957_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0805130b18b579ff8aff2adc253432a21c24b1bce49da0fef56009e538c0cc8e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:22dac221d0a23556fe7f38b773a3ebb68725a0c1533baf0c940984fe3fd6de69_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d023969beb12068dd65f468b87c20911a657733001caf3a7e052b44889676fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9b59421d9efba7c9ed2d1e226f2a60e36f953865dc3ecfc7a1754170b629653e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:59e476792f09ae69ceb0e4d40120ba6366d141dbbd009ffeb0d592afd27b6edd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:962daa988f75b92b553df53e771061206a8366b466bdb3af4a51007825846326_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e168693e564b59ca886bd8c263b8e909691dfccdbde3087287c2489ce1e0573a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f18239411b6923cdda7a734a128448837eaf66661999b756178f8471f838f4e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:06011801321cc34664abc8ed7ade2cf2e1ac96c0753966850e151cab815d61f8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:940697a45ac27b5d78042e8b65edd9b1a85ffba4c79efc2fdd722c92f9c77229_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:eab89e17049e0934a063324cfbc1dcb0c412ef7d9c80fcab35b9c2c9fbeab900_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4d1d53fcf2bbb9273a5a1711f5f1f6b76dedb89a50bff6c2e78fff2b9b91347_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:87436f44eeb0025b95161692eecca9a368d966dadf2a45ec1c4732ff57127b6c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:afc5b3f42b796f5993c25272567fda748e5baf98d17d0bef25edee8bbe92287b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c1ebd5f8cbc416b320e898a4cc49ad9b0ad4adb2dabc126210819e13f573cc9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ec2baac60b28249a0e5b0697abdb0e94b20571a344fd3dcc225c8c17fff2d1e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:17f2eb80baeccc29ffb82d2da9bb0ed485fbab02def7d9cd436e44544b8d1b3c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:84d5473750a2292d7d5acaad3e02a4febd81adf9eab9d92126c9abcdebc535a3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:9a7eabe2ee2b28e0121355ef1a9f5632fe97820b6c7f772a6cfdb7e595ca9fd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:db7f4278a3c8f8d959c25ff947164b1932515afd47533b867517568d9c37c08d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5e59cd9305ae7cee8192800f6c58501ea58ab8878ce335a16ad2e2f4ef39198e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:74eda243b616e1eb074fa91121315d69c0c27a20155c3988dfd2a875e3267511_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bc9b3404f83830558f0173c9631252fd5c3ad64eb1e50c3970504c38a9676f57_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7a9e7c2cc70f1539130cb7be4fec0aa2e575ac02fb76f19fe8c1f9c28688bfd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3a3c1715f3c6f0f770ac9e7f3ae798a72cd0f76acd78b6e6edfe313eb6166302_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4e7f03c301e6642913fe4d5c5d50856597401c04f8fe7233d64dbcd83db1fda0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9c8cd5266a91bbc3f1959ddb336447bce41d8bdbb3e8822991c1144677eccc27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:77b0afcd82f34e5dc2d953129d3a506425ad61b7366c12dc4f18b83dd8b41f81_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:9c188f543cfb5ba855f78e7c3cb47574c9a455bfe39eda5cb56c776b702f55a9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c11e34afa310b5486e5808ec20bd1961bd787722e73751f503d215c41486f565_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:48e4ef50e863ce50a53b98cd15f9ffb5d470737458e5671a88a256117961f927_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8af50941ea73163e9ed77af1f502645340ffe54b7a0d26a67f09ec0b208a03f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:da744e1b9c83b3e975d9f01df280bf7b2f0e133ca1640efb9b41fd7009728394_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e0d986c7d8c7482c972852f2133073968caf42be5eb3edf8f42e97c2fa56f130_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:45b531f3efacc195ff0d0b2d5e5171f06ddd75a4e026e531b96c709211efd67b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6db2aef1b0a8bf3146cf0f7d89a5d738413b9debfad8eb9f313635545270c94f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:75f9ca90baa675997cbd5953c14ded1c23eb139cd151ac27cb00b22d03615a80_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:e86b8dffe071e2f753cc22e23fc915b6b40377058239713624690a558bd26f9a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3e55c715a6fbefc517fb6eae06f87102b83fae8fe1ad9d96d5d04e38a02d66a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:85017f2a631cfe3f97cf7e2694263a38fa8109de3715294deb7e121e4ab5876a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:94c8ae1dee20291dabc8cecc118715ff70e2a53b07a68941c4cc4f6b7cbbbb1c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c7279fa6b42fa9d28899b40f792348ac9556498d7234390e8e670bb08f0ebbbb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:3308be644c1141b2fba332c54010895e6a5fc89380a82b6efde7eba60a9fe3ff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:41fbd90510f63a248acbe9297418a9b893401253142574a0ce88020a1917d803_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:93ed837d6007af5eeb9ca82e602224152371c24e0319c101f527289c1bbb681f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:aef66c166327b5f36e4bc582a0e66b71959ba5de42cb5ed8e90a59918bd4c333_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:03275f8d2facfb8a8b9c07155f360bda87dc3af926773cbed48f7d365ec27230_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:222d1bddfbcb6216deb3c5f5c1aeded914971bc22eab2c239556428ac06fcbca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:79ebee557f78d1add6c4c1e2e7fd15ce60fda4f65041531ab08938cfd8944daf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ff0f47fb3e958723316472ace7c4a72f1c227c6d8153dfa78ca79e23340a8c06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4bc9df05bfe5ae9a9116e8f72615430c2d6c4867a8ad91d38985e1bc302cd80a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:8e7ef7f1efb549b8ab1dac339791f83547414a236b172109cd30c904b1473a54_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb84041ea587478609a81e7c1b6abf670639f60a774a7ab251d542e651c7656b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:463a2fab3c70eae99121cfc80c80027ca13c8828d5a1e3ac2b1f1de9c40badca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b4690ecace753cadab32d74668df5e756d11b8da467bbbae933526c81ac81f34_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ee55912d267ab7c311d4101595ccaad47e784817770c005bf9f5477a89d0d55d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b5258b2a5e08e569c470f773da7f74c633aaff7a9926a10b06760f9787671437_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bb3ab2a93c349706bf0dff12a6b03064f6a430981ed20b7aa9699d43c42448d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bdd4c3ab9653b334f47fa28403c4d128bd326a5b146ae1f557c0d1f06507afe8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:08c844ef4eca84bcf942c71ed9f38dfc14e6aec2aca5b59ea2467884bb0f6f84_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:eed5fe568e1dd38b1b505ea55b0eaa0790d31b786dca53126e5bb1c14d8d9dd7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f3fc38775494bc8fe1ee169d7e64dba1c45b568ca113533958ae7069ca6860f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1c78dba08c0f0e82fc69879b071830c9c708c34797b61c08f022dbb52da16f26_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1f16a4f225c1cee7fbe62adf842acd4bf32837fb7afb349495db3fe20cd29eee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:49474d2b155e1d4ba1348057782fa1aa2b9ba8f3445fb676906e77cca0819c74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:32d7b17e180b15303e3d8c24c26d57f696f4919b1f52db41f75496f50313f827_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7873b2ead186c67c7b2a70e9e9b3fd541be084178183f72ed2d17941e7bc6563_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:aaeb86a52d1566aa0fa1f1bf4015b523d408df6f29de713e341827ee8f7e03dc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:5b921253da6415ddd642f609bdfd853312670009a0b872be4177ef6b7dfbf806_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:9badc32a1c716aa2b6e9fe17650e056760d0faa09473f28bad9467cf2ee959f5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:ce27bcfb5039720f2eaabb27f03a56570ed625c57918ae8bbbe4a6c690db60d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:d87a69baa2a829dfb7e873f1e16b31a06a4f16fc6244223a4f039c5b178da636_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:56b4a7380e482f5e3fb10e35c71a1b0605b651a4c8800242dec5f1281b08a38b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f2c5fa540a38374d12557f71a8066117b1add90f09f9ab5006358b8ec2a320a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8c3b870517808dcc62446f38034ab67d4deea71d2c9cd3603213288c21416a80_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:e4205c8134c7aa9362ff080311507c6e389b82dacf4e06e10461f3fb0a5d269f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0a30460d80b62c7b697065860ddcb0348a37d561bc214d9490e772c040e788f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:716a31cfce7060cb79a691722fdb10da8831a46e2cc12e6d55cc82f1dac9c8b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a5d18bc400edf4ddb0207d452586f3b64401ffa16656b2fdfb154957fdde67c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fa5c6a0aa135900589ea639ad9897956ac6f721970a26127bbce4e4fc84edf3f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:396b0f93db6fa85619126d34a944920fb6782802caeb6bc86af05a27d5db3d47_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d7c1befcbf81ed2230fcd85cb52d4976e8942c965c81f9af169cd2fe5d05ebb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a32bec403165b14098cafc45326a9839205bfe25b7dd2b41efc04bca401fc569_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:bbe95f1191b2aa81c68cdc4c3124ae72259c02f739593fa531f9babb62879948_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2b2a3da712bef30d9bd5a591dc65d7619466b67d4d45b030839d4239b0c52c9a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:abd2abaa015db574e7ac72a08975353ff708d7c31a57c4ec67198dd461560a6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:b8e069ab6b0b27f717092182dd3c81b5ece705e655583fcd9d69bafecc3c2690_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c47ab7dcb3b9fdb023b27426e672c30286fc68e9372578e2121f1a9a1543b53e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:06e88884fc4818f69672be37c5cad35dbb734ba6f5fcc522dc44216f172db9b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:138af2ae85d50413a56842f9b76b3416f5effcb9c0d8fba0d056d1d3e41bc0c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:414a8a46931dc1505d21ef47a0ef75bf90fcd2e5c0c93428a852789730260e54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1b3cbf6fd6751f31215f6ab3b15b6d97a5cb0be42aaa48cbf4cb788bac7b7c43_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:c71f53b45a976d599b5633bee8fa979fcece81f0c422f4bf65b5293ef4c5cba7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:fa4f56861c26d2885c5ce571d0277a1a9fa527562a31084439a436a745b07dce_arm64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.20.25 is now available with updates to packages and images that fix several bugs.\n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.20.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.20.25. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:25194\n\nSecurity Fix(es):\n\n* google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation (CVE-2026-33186)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:25195",
"url": "https://access.redhat.com/errata/RHSA-2026:25195"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_25195.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.20.25 security and extras update",
"tracking": {
"current_release_date": "2026-06-29T17:50:51+00:00",
"generator": {
"date": "2026-06-29T17:50:51+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:25195",
"initial_release_date": "2026-06-16T07:35:18+00:00",
"revision_history": [
{
"date": "2026-06-16T07:35:18+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-16T07:35:59+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:50:51+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.20",
"product": {
"name": "Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.20::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:78ac87a45b3ecd7f7f11af6aaf9f0e6b043c4e1b9046a3e8486a70db2d5f63ee_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:78ac87a45b3ecd7f7f11af6aaf9f0e6b043c4e1b9046a3e8486a70db2d5f63ee_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:78ac87a45b3ecd7f7f11af6aaf9f0e6b043c4e1b9046a3e8486a70db2d5f63ee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A78ac87a45b3ecd7f7f11af6aaf9f0e6b043c4e1b9046a3e8486a70db2d5f63ee?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1780990107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:43e8b775d57b784cda9d69d68d6035e28e2459c3d29b8ce1a518c80aff640d70_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:43e8b775d57b784cda9d69d68d6035e28e2459c3d29b8ce1a518c80aff640d70_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:43e8b775d57b784cda9d69d68d6035e28e2459c3d29b8ce1a518c80aff640d70_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A43e8b775d57b784cda9d69d68d6035e28e2459c3d29b8ce1a518c80aff640d70?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1780993624"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8566d93798ea66d637eab1872a29f29753f5779785e0c9c63c9ec1ddbbbfb231_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8566d93798ea66d637eab1872a29f29753f5779785e0c9c63c9ec1ddbbbfb231_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8566d93798ea66d637eab1872a29f29753f5779785e0c9c63c9ec1ddbbbfb231_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A8566d93798ea66d637eab1872a29f29753f5779785e0c9c63c9ec1ddbbbfb231?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1780990684"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1afa425a522b662e832d1aabef58887bdd7c0a7fec00a2fc2dbd733ce49e3d8b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1afa425a522b662e832d1aabef58887bdd7c0a7fec00a2fc2dbd733ce49e3d8b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1afa425a522b662e832d1aabef58887bdd7c0a7fec00a2fc2dbd733ce49e3d8b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A1afa425a522b662e832d1aabef58887bdd7c0a7fec00a2fc2dbd733ce49e3d8b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1780991230"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0067b843e3534040ef7620715c2f86bb141882cc32df577438aaa321f5141596_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0067b843e3534040ef7620715c2f86bb141882cc32df577438aaa321f5141596_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0067b843e3534040ef7620715c2f86bb141882cc32df577438aaa321f5141596_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A0067b843e3534040ef7620715c2f86bb141882cc32df577438aaa321f5141596?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1780989841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbbcc6e31faaa1ef83e15354f0be0ed2c8f078e6ffed2eb4456bdbab1704b480_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbbcc6e31faaa1ef83e15354f0be0ed2c8f078e6ffed2eb4456bdbab1704b480_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbbcc6e31faaa1ef83e15354f0be0ed2c8f078e6ffed2eb4456bdbab1704b480_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3Adbbcc6e31faaa1ef83e15354f0be0ed2c8f078e6ffed2eb4456bdbab1704b480?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1780990141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:74795f21968adbcaeeaae9e6a8b072d80749cb8bb38e93161f3b0e7badf2eb15_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:74795f21968adbcaeeaae9e6a8b072d80749cb8bb38e93161f3b0e7badf2eb15_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:74795f21968adbcaeeaae9e6a8b072d80749cb8bb38e93161f3b0e7badf2eb15_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-p4sdk-rhel9@sha256%3A74795f21968adbcaeeaae9e6a8b072d80749cb8bb38e93161f3b0e7badf2eb15?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9\u0026tag=1780989680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:90c1b58b7b81275f3e21c2b434927c09d35850058d155faa640c4887c29a2ce0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:90c1b58b7b81275f3e21c2b434927c09d35850058d155faa640c4887c29a2ce0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:90c1b58b7b81275f3e21c2b434927c09d35850058d155faa640c4887c29a2ce0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-vsp-rhel9@sha256%3A90c1b58b7b81275f3e21c2b434927c09d35850058d155faa640c4887c29a2ce0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9\u0026tag=1780989767"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:cf5adcbc1c3723265dbd4bd5ca32068fdec7d646e1f29cf89d1dd421174b1e61_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:cf5adcbc1c3723265dbd4bd5ca32068fdec7d646e1f29cf89d1dd421174b1e61_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:cf5adcbc1c3723265dbd4bd5ca32068fdec7d646e1f29cf89d1dd421174b1e61_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3Acf5adcbc1c3723265dbd4bd5ca32068fdec7d646e1f29cf89d1dd421174b1e61?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1780991889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:463a2fab3c70eae99121cfc80c80027ca13c8828d5a1e3ac2b1f1de9c40badca_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:463a2fab3c70eae99121cfc80c80027ca13c8828d5a1e3ac2b1f1de9c40badca_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:463a2fab3c70eae99121cfc80c80027ca13c8828d5a1e3ac2b1f1de9c40badca_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A463a2fab3c70eae99121cfc80c80027ca13c8828d5a1e3ac2b1f1de9c40badca?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1780989693"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4957fc95a32e9e58e7574bb054755b0e939f69c49a00d500bd99dd342ec2108c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4957fc95a32e9e58e7574bb054755b0e939f69c49a00d500bd99dd342ec2108c_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4957fc95a32e9e58e7574bb054755b0e939f69c49a00d500bd99dd342ec2108c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A4957fc95a32e9e58e7574bb054755b0e939f69c49a00d500bd99dd342ec2108c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1780990661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:2c94df4cd32b010ab7d37189f82d7f96e680a555bc111a92cf2afe7d623f769d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:2c94df4cd32b010ab7d37189f82d7f96e680a555bc111a92cf2afe7d623f769d_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:2c94df4cd32b010ab7d37189f82d7f96e680a555bc111a92cf2afe7d623f769d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A2c94df4cd32b010ab7d37189f82d7f96e680a555bc111a92cf2afe7d623f769d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1780989787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:9dd1451787189cf9448b978b1595e21ff5d10cdf4390386c7711ec3b10c90b54_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:9dd1451787189cf9448b978b1595e21ff5d10cdf4390386c7711ec3b10c90b54_arm64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:9dd1451787189cf9448b978b1595e21ff5d10cdf4390386c7711ec3b10c90b54_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A9dd1451787189cf9448b978b1595e21ff5d10cdf4390386c7711ec3b10c90b54?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1780993920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c11e34afa310b5486e5808ec20bd1961bd787722e73751f503d215c41486f565_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c11e34afa310b5486e5808ec20bd1961bd787722e73751f503d215c41486f565_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c11e34afa310b5486e5808ec20bd1961bd787722e73751f503d215c41486f565_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3Ac11e34afa310b5486e5808ec20bd1961bd787722e73751f503d215c41486f565?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1780990405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:eab89e17049e0934a063324cfbc1dcb0c412ef7d9c80fcab35b9c2c9fbeab900_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:eab89e17049e0934a063324cfbc1dcb0c412ef7d9c80fcab35b9c2c9fbeab900_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:eab89e17049e0934a063324cfbc1dcb0c412ef7d9c80fcab35b9c2c9fbeab900_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Aeab89e17049e0934a063324cfbc1dcb0c412ef7d9c80fcab35b9c2c9fbeab900?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1780989705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c1ebd5f8cbc416b320e898a4cc49ad9b0ad4adb2dabc126210819e13f573cc9e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c1ebd5f8cbc416b320e898a4cc49ad9b0ad4adb2dabc126210819e13f573cc9e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c1ebd5f8cbc416b320e898a4cc49ad9b0ad4adb2dabc126210819e13f573cc9e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Ac1ebd5f8cbc416b320e898a4cc49ad9b0ad4adb2dabc126210819e13f573cc9e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1780992345"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:17f2eb80baeccc29ffb82d2da9bb0ed485fbab02def7d9cd436e44544b8d1b3c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:17f2eb80baeccc29ffb82d2da9bb0ed485fbab02def7d9cd436e44544b8d1b3c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:17f2eb80baeccc29ffb82d2da9bb0ed485fbab02def7d9cd436e44544b8d1b3c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A17f2eb80baeccc29ffb82d2da9bb0ed485fbab02def7d9cd436e44544b8d1b3c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1780990233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0a6b23cf1028b858b61334e3d4bf504a7895517373d28bce10c94fb3622a8edf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0a6b23cf1028b858b61334e3d4bf504a7895517373d28bce10c94fb3622a8edf_arm64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0a6b23cf1028b858b61334e3d4bf504a7895517373d28bce10c94fb3622a8edf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A0a6b23cf1028b858b61334e3d4bf504a7895517373d28bce10c94fb3622a8edf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1781101874"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5e59cd9305ae7cee8192800f6c58501ea58ab8878ce335a16ad2e2f4ef39198e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5e59cd9305ae7cee8192800f6c58501ea58ab8878ce335a16ad2e2f4ef39198e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5e59cd9305ae7cee8192800f6c58501ea58ab8878ce335a16ad2e2f4ef39198e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A5e59cd9305ae7cee8192800f6c58501ea58ab8878ce335a16ad2e2f4ef39198e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1780990691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a78e8078414d4b8e9496d7f1986a6ac6a9a648b5e561415b563bc1827d870ffe_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a78e8078414d4b8e9496d7f1986a6ac6a9a648b5e561415b563bc1827d870ffe_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a78e8078414d4b8e9496d7f1986a6ac6a9a648b5e561415b563bc1827d870ffe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Aa78e8078414d4b8e9496d7f1986a6ac6a9a648b5e561415b563bc1827d870ffe?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1780990095"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:714de7953e67ca5939f7f29b6646f808411b6aa19c67bb71c83bfde43ec6a135_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:714de7953e67ca5939f7f29b6646f808411b6aa19c67bb71c83bfde43ec6a135_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:714de7953e67ca5939f7f29b6646f808411b6aa19c67bb71c83bfde43ec6a135_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A714de7953e67ca5939f7f29b6646f808411b6aa19c67bb71c83bfde43ec6a135?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1780993749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0805130b18b579ff8aff2adc253432a21c24b1bce49da0fef56009e538c0cc8e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0805130b18b579ff8aff2adc253432a21c24b1bce49da0fef56009e538c0cc8e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0805130b18b579ff8aff2adc253432a21c24b1bce49da0fef56009e538c0cc8e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A0805130b18b579ff8aff2adc253432a21c24b1bce49da0fef56009e538c0cc8e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1780993652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f18239411b6923cdda7a734a128448837eaf66661999b756178f8471f838f4e1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f18239411b6923cdda7a734a128448837eaf66661999b756178f8471f838f4e1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f18239411b6923cdda7a734a128448837eaf66661999b756178f8471f838f4e1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Af18239411b6923cdda7a734a128448837eaf66661999b756178f8471f838f4e1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1780990689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:46c20bae85f471cb842c770fbfe5754571abf33f269b1b33a4101aa8338159d4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:46c20bae85f471cb842c770fbfe5754571abf33f269b1b33a4101aa8338159d4_arm64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:46c20bae85f471cb842c770fbfe5754571abf33f269b1b33a4101aa8338159d4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A46c20bae85f471cb842c770fbfe5754571abf33f269b1b33a4101aa8338159d4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1781100849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:3c7242b0b822a2aadffd9906478f01608b538f673900163a60fcfa086d375906_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:3c7242b0b822a2aadffd9906478f01608b538f673900163a60fcfa086d375906_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:3c7242b0b822a2aadffd9906478f01608b538f673900163a60fcfa086d375906_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3A3c7242b0b822a2aadffd9906478f01608b538f673900163a60fcfa086d375906?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9\u0026tag=1780990526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:2ce01e19a15a61c01b73284263ccbb0f58f8f08dc8322c61ab3ce99af6436b19_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:2ce01e19a15a61c01b73284263ccbb0f58f8f08dc8322c61ab3ce99af6436b19_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:2ce01e19a15a61c01b73284263ccbb0f58f8f08dc8322c61ab3ce99af6436b19_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3A2ce01e19a15a61c01b73284263ccbb0f58f8f08dc8322c61ab3ce99af6436b19?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator\u0026tag=1780989625"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:15a7e0076980f322a7272c25a00f0bf6ce6fdb31e34f687318844f90a9cc8f79_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:15a7e0076980f322a7272c25a00f0bf6ce6fdb31e34f687318844f90a9cc8f79_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:15a7e0076980f322a7272c25a00f0bf6ce6fdb31e34f687318844f90a9cc8f79_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A15a7e0076980f322a7272c25a00f0bf6ce6fdb31e34f687318844f90a9cc8f79?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1780989644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1da397c213c1aabee4f18456a10bc135248c4c19a46238fdbf7125ad099c6bed_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1da397c213c1aabee4f18456a10bc135248c4c19a46238fdbf7125ad099c6bed_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1da397c213c1aabee4f18456a10bc135248c4c19a46238fdbf7125ad099c6bed_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A1da397c213c1aabee4f18456a10bc135248c4c19a46238fdbf7125ad099c6bed?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1780989642"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:66553dcdeb9b568e7712f2888d3e7312b475e06d0ec86dad3cbe27ab0e3538ab_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:66553dcdeb9b568e7712f2888d3e7312b475e06d0ec86dad3cbe27ab0e3538ab_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:66553dcdeb9b568e7712f2888d3e7312b475e06d0ec86dad3cbe27ab0e3538ab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A66553dcdeb9b568e7712f2888d3e7312b475e06d0ec86dad3cbe27ab0e3538ab?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1780990302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:1df9e36c7afa85458daa6512bbd91b370d60165d348a49c2dfecc716e787c926_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:1df9e36c7afa85458daa6512bbd91b370d60165d348a49c2dfecc716e787c926_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:1df9e36c7afa85458daa6512bbd91b370d60165d348a49c2dfecc716e787c926_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A1df9e36c7afa85458daa6512bbd91b370d60165d348a49c2dfecc716e787c926?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1781009068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:45b531f3efacc195ff0d0b2d5e5171f06ddd75a4e026e531b96c709211efd67b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:45b531f3efacc195ff0d0b2d5e5171f06ddd75a4e026e531b96c709211efd67b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:45b531f3efacc195ff0d0b2d5e5171f06ddd75a4e026e531b96c709211efd67b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A45b531f3efacc195ff0d0b2d5e5171f06ddd75a4e026e531b96c709211efd67b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1780989802"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8af50941ea73163e9ed77af1f502645340ffe54b7a0d26a67f09ec0b208a03f9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8af50941ea73163e9ed77af1f502645340ffe54b7a0d26a67f09ec0b208a03f9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8af50941ea73163e9ed77af1f502645340ffe54b7a0d26a67f09ec0b208a03f9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A8af50941ea73163e9ed77af1f502645340ffe54b7a0d26a67f09ec0b208a03f9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1780991549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:85017f2a631cfe3f97cf7e2694263a38fa8109de3715294deb7e121e4ab5876a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:85017f2a631cfe3f97cf7e2694263a38fa8109de3715294deb7e121e4ab5876a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:85017f2a631cfe3f97cf7e2694263a38fa8109de3715294deb7e121e4ab5876a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A85017f2a631cfe3f97cf7e2694263a38fa8109de3715294deb7e121e4ab5876a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1780992557"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:222d1bddfbcb6216deb3c5f5c1aeded914971bc22eab2c239556428ac06fcbca_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:222d1bddfbcb6216deb3c5f5c1aeded914971bc22eab2c239556428ac06fcbca_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:222d1bddfbcb6216deb3c5f5c1aeded914971bc22eab2c239556428ac06fcbca_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A222d1bddfbcb6216deb3c5f5c1aeded914971bc22eab2c239556428ac06fcbca?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1780989826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:3308be644c1141b2fba332c54010895e6a5fc89380a82b6efde7eba60a9fe3ff_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:3308be644c1141b2fba332c54010895e6a5fc89380a82b6efde7eba60a9fe3ff_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:3308be644c1141b2fba332c54010895e6a5fc89380a82b6efde7eba60a9fe3ff_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A3308be644c1141b2fba332c54010895e6a5fc89380a82b6efde7eba60a9fe3ff?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1780990825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:eed5fe568e1dd38b1b505ea55b0eaa0790d31b786dca53126e5bb1c14d8d9dd7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:eed5fe568e1dd38b1b505ea55b0eaa0790d31b786dca53126e5bb1c14d8d9dd7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:eed5fe568e1dd38b1b505ea55b0eaa0790d31b786dca53126e5bb1c14d8d9dd7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Aeed5fe568e1dd38b1b505ea55b0eaa0790d31b786dca53126e5bb1c14d8d9dd7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1780990174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:aaeb86a52d1566aa0fa1f1bf4015b523d408df6f29de713e341827ee8f7e03dc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:aaeb86a52d1566aa0fa1f1bf4015b523d408df6f29de713e341827ee8f7e03dc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:aaeb86a52d1566aa0fa1f1bf4015b523d408df6f29de713e341827ee8f7e03dc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3Aaaeb86a52d1566aa0fa1f1bf4015b523d408df6f29de713e341827ee8f7e03dc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1780990225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:9badc32a1c716aa2b6e9fe17650e056760d0faa09473f28bad9467cf2ee959f5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:9badc32a1c716aa2b6e9fe17650e056760d0faa09473f28bad9467cf2ee959f5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:9badc32a1c716aa2b6e9fe17650e056760d0faa09473f28bad9467cf2ee959f5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-support-log-gather-rhel9-operator@sha256%3A9badc32a1c716aa2b6e9fe17650e056760d0faa09473f28bad9467cf2ee959f5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator\u0026tag=1780992274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c47ab7dcb3b9fdb023b27426e672c30286fc68e9372578e2121f1a9a1543b53e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c47ab7dcb3b9fdb023b27426e672c30286fc68e9372578e2121f1a9a1543b53e_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c47ab7dcb3b9fdb023b27426e672c30286fc68e9372578e2121f1a9a1543b53e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Ac47ab7dcb3b9fdb023b27426e672c30286fc68e9372578e2121f1a9a1543b53e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1780990546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:396b0f93db6fa85619126d34a944920fb6782802caeb6bc86af05a27d5db3d47_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:396b0f93db6fa85619126d34a944920fb6782802caeb6bc86af05a27d5db3d47_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:396b0f93db6fa85619126d34a944920fb6782802caeb6bc86af05a27d5db3d47_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A396b0f93db6fa85619126d34a944920fb6782802caeb6bc86af05a27d5db3d47?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1780992262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4e7f03c301e6642913fe4d5c5d50856597401c04f8fe7233d64dbcd83db1fda0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4e7f03c301e6642913fe4d5c5d50856597401c04f8fe7233d64dbcd83db1fda0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4e7f03c301e6642913fe4d5c5d50856597401c04f8fe7233d64dbcd83db1fda0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A4e7f03c301e6642913fe4d5c5d50856597401c04f8fe7233d64dbcd83db1fda0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1780989662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:414a8a46931dc1505d21ef47a0ef75bf90fcd2e5c0c93428a852789730260e54_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:414a8a46931dc1505d21ef47a0ef75bf90fcd2e5c0c93428a852789730260e54_arm64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:414a8a46931dc1505d21ef47a0ef75bf90fcd2e5c0c93428a852789730260e54_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A414a8a46931dc1505d21ef47a0ef75bf90fcd2e5c0c93428a852789730260e54?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1780992467"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:fa4f56861c26d2885c5ce571d0277a1a9fa527562a31084439a436a745b07dce_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:fa4f56861c26d2885c5ce571d0277a1a9fa527562a31084439a436a745b07dce_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:fa4f56861c26d2885c5ce571d0277a1a9fa527562a31084439a436a745b07dce_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3Afa4f56861c26d2885c5ce571d0277a1a9fa527562a31084439a436a745b07dce?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1780989696"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb84041ea587478609a81e7c1b6abf670639f60a774a7ab251d542e651c7656b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb84041ea587478609a81e7c1b6abf670639f60a774a7ab251d542e651c7656b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb84041ea587478609a81e7c1b6abf670639f60a774a7ab251d542e651c7656b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3Aeb84041ea587478609a81e7c1b6abf670639f60a774a7ab251d542e651c7656b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1780990227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bb3ab2a93c349706bf0dff12a6b03064f6a430981ed20b7aa9699d43c42448d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bb3ab2a93c349706bf0dff12a6b03064f6a430981ed20b7aa9699d43c42448d9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bb3ab2a93c349706bf0dff12a6b03064f6a430981ed20b7aa9699d43c42448d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3Abb3ab2a93c349706bf0dff12a6b03064f6a430981ed20b7aa9699d43c42448d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1780990227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1c78dba08c0f0e82fc69879b071830c9c708c34797b61c08f022dbb52da16f26_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1c78dba08c0f0e82fc69879b071830c9c708c34797b61c08f022dbb52da16f26_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1c78dba08c0f0e82fc69879b071830c9c708c34797b61c08f022dbb52da16f26_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A1c78dba08c0f0e82fc69879b071830c9c708c34797b61c08f022dbb52da16f26?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1780990143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0a30460d80b62c7b697065860ddcb0348a37d561bc214d9490e772c040e788f1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0a30460d80b62c7b697065860ddcb0348a37d561bc214d9490e772c040e788f1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0a30460d80b62c7b697065860ddcb0348a37d561bc214d9490e772c040e788f1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A0a30460d80b62c7b697065860ddcb0348a37d561bc214d9490e772c040e788f1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1780990303"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:56b4a7380e482f5e3fb10e35c71a1b0605b651a4c8800242dec5f1281b08a38b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:56b4a7380e482f5e3fb10e35c71a1b0605b651a4c8800242dec5f1281b08a38b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:56b4a7380e482f5e3fb10e35c71a1b0605b651a4c8800242dec5f1281b08a38b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A56b4a7380e482f5e3fb10e35c71a1b0605b651a4c8800242dec5f1281b08a38b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1780991868"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f0caad7678dc21d891d18b0ce27e5b08e103f4e1196b8f0bd09dfd5f3aefafd3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f0caad7678dc21d891d18b0ce27e5b08e103f4e1196b8f0bd09dfd5f3aefafd3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f0caad7678dc21d891d18b0ce27e5b08e103f4e1196b8f0bd09dfd5f3aefafd3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Af0caad7678dc21d891d18b0ce27e5b08e103f4e1196b8f0bd09dfd5f3aefafd3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1780990107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5d2f312f0a4fd8db4299d3c213d8bfa9281ec7d5373b96490d08cb539b7eff9e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5d2f312f0a4fd8db4299d3c213d8bfa9281ec7d5373b96490d08cb539b7eff9e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5d2f312f0a4fd8db4299d3c213d8bfa9281ec7d5373b96490d08cb539b7eff9e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A5d2f312f0a4fd8db4299d3c213d8bfa9281ec7d5373b96490d08cb539b7eff9e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1780993624"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:384add612089ea21ef5a1ea14615f26663f57b23a74c1909165676b1fcb320a0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:384add612089ea21ef5a1ea14615f26663f57b23a74c1909165676b1fcb320a0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:384add612089ea21ef5a1ea14615f26663f57b23a74c1909165676b1fcb320a0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A384add612089ea21ef5a1ea14615f26663f57b23a74c1909165676b1fcb320a0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1780990684"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:bcdfcc44aa3a4e76a8f370e653c87501146b39fbfb1682875e1378b26377571a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:bcdfcc44aa3a4e76a8f370e653c87501146b39fbfb1682875e1378b26377571a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:bcdfcc44aa3a4e76a8f370e653c87501146b39fbfb1682875e1378b26377571a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3Abcdfcc44aa3a4e76a8f370e653c87501146b39fbfb1682875e1378b26377571a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1780991230"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b47b354cdd0b1046cc2ca7195520fe9929d25a258cacd4ddbda0394f030cf0ff_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b47b354cdd0b1046cc2ca7195520fe9929d25a258cacd4ddbda0394f030cf0ff_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b47b354cdd0b1046cc2ca7195520fe9929d25a258cacd4ddbda0394f030cf0ff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3Ab47b354cdd0b1046cc2ca7195520fe9929d25a258cacd4ddbda0394f030cf0ff?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1780989841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:23bd9724dd89ad3b955d02ee7c181ed2323dc517f62642d37171e84f7584c796_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:23bd9724dd89ad3b955d02ee7c181ed2323dc517f62642d37171e84f7584c796_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:23bd9724dd89ad3b955d02ee7c181ed2323dc517f62642d37171e84f7584c796_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A23bd9724dd89ad3b955d02ee7c181ed2323dc517f62642d37171e84f7584c796?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1780990141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:d9800e6b0161cd0517644746a5aa3381da7ef489405103d47e8cbb23cfcdb64c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:d9800e6b0161cd0517644746a5aa3381da7ef489405103d47e8cbb23cfcdb64c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:d9800e6b0161cd0517644746a5aa3381da7ef489405103d47e8cbb23cfcdb64c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-p4sdk-rhel9@sha256%3Ad9800e6b0161cd0517644746a5aa3381da7ef489405103d47e8cbb23cfcdb64c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9\u0026tag=1780989680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:64beb43b5d803f1c72e6bf3e93cb080510cef99d97ae4ba97c1b2ed5373a3b9d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:64beb43b5d803f1c72e6bf3e93cb080510cef99d97ae4ba97c1b2ed5373a3b9d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:64beb43b5d803f1c72e6bf3e93cb080510cef99d97ae4ba97c1b2ed5373a3b9d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-vsp-rhel9@sha256%3A64beb43b5d803f1c72e6bf3e93cb080510cef99d97ae4ba97c1b2ed5373a3b9d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9\u0026tag=1780989767"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:1379072258e060afea437e8e868ef778261f9200e33ac50a71cee158f1966e04_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:1379072258e060afea437e8e868ef778261f9200e33ac50a71cee158f1966e04_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:1379072258e060afea437e8e868ef778261f9200e33ac50a71cee158f1966e04_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A1379072258e060afea437e8e868ef778261f9200e33ac50a71cee158f1966e04?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1780991889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ee55912d267ab7c311d4101595ccaad47e784817770c005bf9f5477a89d0d55d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ee55912d267ab7c311d4101595ccaad47e784817770c005bf9f5477a89d0d55d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ee55912d267ab7c311d4101595ccaad47e784817770c005bf9f5477a89d0d55d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Aee55912d267ab7c311d4101595ccaad47e784817770c005bf9f5477a89d0d55d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1780989693"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:ac7c733a1d501bac474d98900181e8822bdee6cb6b84148850c6eb9e1c4562d4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:ac7c733a1d501bac474d98900181e8822bdee6cb6b84148850c6eb9e1c4562d4_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:ac7c733a1d501bac474d98900181e8822bdee6cb6b84148850c6eb9e1c4562d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3Aac7c733a1d501bac474d98900181e8822bdee6cb6b84148850c6eb9e1c4562d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1780990661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f18bc8f41b9a12bee6914be1bc0c0191ed6c6b011b72709e39375e2cfac85577_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f18bc8f41b9a12bee6914be1bc0c0191ed6c6b011b72709e39375e2cfac85577_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f18bc8f41b9a12bee6914be1bc0c0191ed6c6b011b72709e39375e2cfac85577_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Af18bc8f41b9a12bee6914be1bc0c0191ed6c6b011b72709e39375e2cfac85577?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1780989787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b5edbfb87a64af390d3c66e5f9d6bf47cfd3aaf120ceba18dcb7739f8d748514_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b5edbfb87a64af390d3c66e5f9d6bf47cfd3aaf120ceba18dcb7739f8d748514_amd64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b5edbfb87a64af390d3c66e5f9d6bf47cfd3aaf120ceba18dcb7739f8d748514_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3Ab5edbfb87a64af390d3c66e5f9d6bf47cfd3aaf120ceba18dcb7739f8d748514?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1780993920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:77b0afcd82f34e5dc2d953129d3a506425ad61b7366c12dc4f18b83dd8b41f81_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:77b0afcd82f34e5dc2d953129d3a506425ad61b7366c12dc4f18b83dd8b41f81_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:77b0afcd82f34e5dc2d953129d3a506425ad61b7366c12dc4f18b83dd8b41f81_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A77b0afcd82f34e5dc2d953129d3a506425ad61b7366c12dc4f18b83dd8b41f81?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1780990405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4d1d53fcf2bbb9273a5a1711f5f1f6b76dedb89a50bff6c2e78fff2b9b91347_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4d1d53fcf2bbb9273a5a1711f5f1f6b76dedb89a50bff6c2e78fff2b9b91347_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4d1d53fcf2bbb9273a5a1711f5f1f6b76dedb89a50bff6c2e78fff2b9b91347_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Af4d1d53fcf2bbb9273a5a1711f5f1f6b76dedb89a50bff6c2e78fff2b9b91347?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1780989705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:87436f44eeb0025b95161692eecca9a368d966dadf2a45ec1c4732ff57127b6c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:87436f44eeb0025b95161692eecca9a368d966dadf2a45ec1c4732ff57127b6c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:87436f44eeb0025b95161692eecca9a368d966dadf2a45ec1c4732ff57127b6c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A87436f44eeb0025b95161692eecca9a368d966dadf2a45ec1c4732ff57127b6c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1780992345"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:9a7eabe2ee2b28e0121355ef1a9f5632fe97820b6c7f772a6cfdb7e595ca9fd1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:9a7eabe2ee2b28e0121355ef1a9f5632fe97820b6c7f772a6cfdb7e595ca9fd1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:9a7eabe2ee2b28e0121355ef1a9f5632fe97820b6c7f772a6cfdb7e595ca9fd1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A9a7eabe2ee2b28e0121355ef1a9f5632fe97820b6c7f772a6cfdb7e595ca9fd1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1780990233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:483f733cdc78157f9e1c07c221b04dbe56dea287e5f1df2c71ac7fa9d4add7a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:483f733cdc78157f9e1c07c221b04dbe56dea287e5f1df2c71ac7fa9d4add7a2_amd64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:483f733cdc78157f9e1c07c221b04dbe56dea287e5f1df2c71ac7fa9d4add7a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A483f733cdc78157f9e1c07c221b04dbe56dea287e5f1df2c71ac7fa9d4add7a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1781101874"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bc9b3404f83830558f0173c9631252fd5c3ad64eb1e50c3970504c38a9676f57_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bc9b3404f83830558f0173c9631252fd5c3ad64eb1e50c3970504c38a9676f57_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bc9b3404f83830558f0173c9631252fd5c3ad64eb1e50c3970504c38a9676f57_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Abc9b3404f83830558f0173c9631252fd5c3ad64eb1e50c3970504c38a9676f57?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1780990691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:bcd4821d104293600d92ec3efb0967baa2e396f8a192e6b70918a5d0f5fa0272_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:bcd4821d104293600d92ec3efb0967baa2e396f8a192e6b70918a5d0f5fa0272_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:bcd4821d104293600d92ec3efb0967baa2e396f8a192e6b70918a5d0f5fa0272_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Abcd4821d104293600d92ec3efb0967baa2e396f8a192e6b70918a5d0f5fa0272?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1780990095"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0c909d66cbf969cbe11968a07bc45b88ceaf48318eda1383078eae246555c3af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0c909d66cbf969cbe11968a07bc45b88ceaf48318eda1383078eae246555c3af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0c909d66cbf969cbe11968a07bc45b88ceaf48318eda1383078eae246555c3af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A0c909d66cbf969cbe11968a07bc45b88ceaf48318eda1383078eae246555c3af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1780993749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d023969beb12068dd65f468b87c20911a657733001caf3a7e052b44889676fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d023969beb12068dd65f468b87c20911a657733001caf3a7e052b44889676fc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d023969beb12068dd65f468b87c20911a657733001caf3a7e052b44889676fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A2d023969beb12068dd65f468b87c20911a657733001caf3a7e052b44889676fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1780993652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:59e476792f09ae69ceb0e4d40120ba6366d141dbbd009ffeb0d592afd27b6edd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:59e476792f09ae69ceb0e4d40120ba6366d141dbbd009ffeb0d592afd27b6edd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:59e476792f09ae69ceb0e4d40120ba6366d141dbbd009ffeb0d592afd27b6edd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A59e476792f09ae69ceb0e4d40120ba6366d141dbbd009ffeb0d592afd27b6edd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1780990689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c37d9b5fb29ccd67c1188f8e96ecca8da7b4ed7dbbb5bd5cdb75ca927ff9f0b3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c37d9b5fb29ccd67c1188f8e96ecca8da7b4ed7dbbb5bd5cdb75ca927ff9f0b3_amd64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c37d9b5fb29ccd67c1188f8e96ecca8da7b4ed7dbbb5bd5cdb75ca927ff9f0b3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Ac37d9b5fb29ccd67c1188f8e96ecca8da7b4ed7dbbb5bd5cdb75ca927ff9f0b3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1781100849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:6df1c2bf8515d1af6afdf92ce3b2eee4505b0adede1d4f9de42a461c294c3af7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:6df1c2bf8515d1af6afdf92ce3b2eee4505b0adede1d4f9de42a461c294c3af7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:6df1c2bf8515d1af6afdf92ce3b2eee4505b0adede1d4f9de42a461c294c3af7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3A6df1c2bf8515d1af6afdf92ce3b2eee4505b0adede1d4f9de42a461c294c3af7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9\u0026tag=1780990526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:7329a64e3ad7c0661c610ba516a1f02bd0f988dbd0ac552d7c60f90a2bafd5e2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:7329a64e3ad7c0661c610ba516a1f02bd0f988dbd0ac552d7c60f90a2bafd5e2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:7329a64e3ad7c0661c610ba516a1f02bd0f988dbd0ac552d7c60f90a2bafd5e2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3A7329a64e3ad7c0661c610ba516a1f02bd0f988dbd0ac552d7c60f90a2bafd5e2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator\u0026tag=1780989625"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:560dca12fdb11f4705c523bf35f13cf4a13bb61ebb6aa67d6f6ee888803089a5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:560dca12fdb11f4705c523bf35f13cf4a13bb61ebb6aa67d6f6ee888803089a5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:560dca12fdb11f4705c523bf35f13cf4a13bb61ebb6aa67d6f6ee888803089a5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A560dca12fdb11f4705c523bf35f13cf4a13bb61ebb6aa67d6f6ee888803089a5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1780989644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:6c2483950c50e5e6b7301cb63dae09e7aa2fbc2289375a14338b3f4bb3850957_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:6c2483950c50e5e6b7301cb63dae09e7aa2fbc2289375a14338b3f4bb3850957_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:6c2483950c50e5e6b7301cb63dae09e7aa2fbc2289375a14338b3f4bb3850957_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A6c2483950c50e5e6b7301cb63dae09e7aa2fbc2289375a14338b3f4bb3850957?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1780989642"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:b79ca32b7852162f42f4649cc00babda1228e074d5c2ee48f9748df9f9aff326_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:b79ca32b7852162f42f4649cc00babda1228e074d5c2ee48f9748df9f9aff326_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:b79ca32b7852162f42f4649cc00babda1228e074d5c2ee48f9748df9f9aff326_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Ab79ca32b7852162f42f4649cc00babda1228e074d5c2ee48f9748df9f9aff326?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1780990302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2fd436736db0a34557db5ddf1eff5a51cb872e5bd1fabda461cc5f531e57a213_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2fd436736db0a34557db5ddf1eff5a51cb872e5bd1fabda461cc5f531e57a213_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2fd436736db0a34557db5ddf1eff5a51cb872e5bd1fabda461cc5f531e57a213_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A2fd436736db0a34557db5ddf1eff5a51cb872e5bd1fabda461cc5f531e57a213?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1781009068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:75f9ca90baa675997cbd5953c14ded1c23eb139cd151ac27cb00b22d03615a80_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:75f9ca90baa675997cbd5953c14ded1c23eb139cd151ac27cb00b22d03615a80_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:75f9ca90baa675997cbd5953c14ded1c23eb139cd151ac27cb00b22d03615a80_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A75f9ca90baa675997cbd5953c14ded1c23eb139cd151ac27cb00b22d03615a80?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1780989802"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e0d986c7d8c7482c972852f2133073968caf42be5eb3edf8f42e97c2fa56f130_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e0d986c7d8c7482c972852f2133073968caf42be5eb3edf8f42e97c2fa56f130_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e0d986c7d8c7482c972852f2133073968caf42be5eb3edf8f42e97c2fa56f130_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3Ae0d986c7d8c7482c972852f2133073968caf42be5eb3edf8f42e97c2fa56f130?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1780991549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3e55c715a6fbefc517fb6eae06f87102b83fae8fe1ad9d96d5d04e38a02d66a4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3e55c715a6fbefc517fb6eae06f87102b83fae8fe1ad9d96d5d04e38a02d66a4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3e55c715a6fbefc517fb6eae06f87102b83fae8fe1ad9d96d5d04e38a02d66a4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A3e55c715a6fbefc517fb6eae06f87102b83fae8fe1ad9d96d5d04e38a02d66a4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1780992557"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:79ebee557f78d1add6c4c1e2e7fd15ce60fda4f65041531ab08938cfd8944daf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:79ebee557f78d1add6c4c1e2e7fd15ce60fda4f65041531ab08938cfd8944daf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:79ebee557f78d1add6c4c1e2e7fd15ce60fda4f65041531ab08938cfd8944daf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A79ebee557f78d1add6c4c1e2e7fd15ce60fda4f65041531ab08938cfd8944daf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1780989826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:41fbd90510f63a248acbe9297418a9b893401253142574a0ce88020a1917d803_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:41fbd90510f63a248acbe9297418a9b893401253142574a0ce88020a1917d803_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:41fbd90510f63a248acbe9297418a9b893401253142574a0ce88020a1917d803_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A41fbd90510f63a248acbe9297418a9b893401253142574a0ce88020a1917d803?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1780990825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f3fc38775494bc8fe1ee169d7e64dba1c45b568ca113533958ae7069ca6860f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f3fc38775494bc8fe1ee169d7e64dba1c45b568ca113533958ae7069ca6860f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f3fc38775494bc8fe1ee169d7e64dba1c45b568ca113533958ae7069ca6860f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Af3fc38775494bc8fe1ee169d7e64dba1c45b568ca113533958ae7069ca6860f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1780990174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7873b2ead186c67c7b2a70e9e9b3fd541be084178183f72ed2d17941e7bc6563_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7873b2ead186c67c7b2a70e9e9b3fd541be084178183f72ed2d17941e7bc6563_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7873b2ead186c67c7b2a70e9e9b3fd541be084178183f72ed2d17941e7bc6563_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A7873b2ead186c67c7b2a70e9e9b3fd541be084178183f72ed2d17941e7bc6563?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1780990225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:d87a69baa2a829dfb7e873f1e16b31a06a4f16fc6244223a4f039c5b178da636_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:d87a69baa2a829dfb7e873f1e16b31a06a4f16fc6244223a4f039c5b178da636_amd64",
"product_id": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:d87a69baa2a829dfb7e873f1e16b31a06a4f16fc6244223a4f039c5b178da636_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-support-log-gather-rhel9-operator@sha256%3Ad87a69baa2a829dfb7e873f1e16b31a06a4f16fc6244223a4f039c5b178da636?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator\u0026tag=1780992274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2b2a3da712bef30d9bd5a591dc65d7619466b67d4d45b030839d4239b0c52c9a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2b2a3da712bef30d9bd5a591dc65d7619466b67d4d45b030839d4239b0c52c9a_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2b2a3da712bef30d9bd5a591dc65d7619466b67d4d45b030839d4239b0c52c9a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A2b2a3da712bef30d9bd5a591dc65d7619466b67d4d45b030839d4239b0c52c9a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1780990546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d7c1befcbf81ed2230fcd85cb52d4976e8942c965c81f9af169cd2fe5d05ebb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d7c1befcbf81ed2230fcd85cb52d4976e8942c965c81f9af169cd2fe5d05ebb_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d7c1befcbf81ed2230fcd85cb52d4976e8942c965c81f9af169cd2fe5d05ebb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A6d7c1befcbf81ed2230fcd85cb52d4976e8942c965c81f9af169cd2fe5d05ebb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1780992262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9c8cd5266a91bbc3f1959ddb336447bce41d8bdbb3e8822991c1144677eccc27_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9c8cd5266a91bbc3f1959ddb336447bce41d8bdbb3e8822991c1144677eccc27_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9c8cd5266a91bbc3f1959ddb336447bce41d8bdbb3e8822991c1144677eccc27_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A9c8cd5266a91bbc3f1959ddb336447bce41d8bdbb3e8822991c1144677eccc27?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1780989662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:138af2ae85d50413a56842f9b76b3416f5effcb9c0d8fba0d056d1d3e41bc0c6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:138af2ae85d50413a56842f9b76b3416f5effcb9c0d8fba0d056d1d3e41bc0c6_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:138af2ae85d50413a56842f9b76b3416f5effcb9c0d8fba0d056d1d3e41bc0c6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A138af2ae85d50413a56842f9b76b3416f5effcb9c0d8fba0d056d1d3e41bc0c6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1780992467"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:c71f53b45a976d599b5633bee8fa979fcece81f0c422f4bf65b5293ef4c5cba7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:c71f53b45a976d599b5633bee8fa979fcece81f0c422f4bf65b5293ef4c5cba7_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:c71f53b45a976d599b5633bee8fa979fcece81f0c422f4bf65b5293ef4c5cba7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3Ac71f53b45a976d599b5633bee8fa979fcece81f0c422f4bf65b5293ef4c5cba7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1780989696"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4bc9df05bfe5ae9a9116e8f72615430c2d6c4867a8ad91d38985e1bc302cd80a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4bc9df05bfe5ae9a9116e8f72615430c2d6c4867a8ad91d38985e1bc302cd80a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4bc9df05bfe5ae9a9116e8f72615430c2d6c4867a8ad91d38985e1bc302cd80a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A4bc9df05bfe5ae9a9116e8f72615430c2d6c4867a8ad91d38985e1bc302cd80a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1780990227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bdd4c3ab9653b334f47fa28403c4d128bd326a5b146ae1f557c0d1f06507afe8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bdd4c3ab9653b334f47fa28403c4d128bd326a5b146ae1f557c0d1f06507afe8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bdd4c3ab9653b334f47fa28403c4d128bd326a5b146ae1f557c0d1f06507afe8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3Abdd4c3ab9653b334f47fa28403c4d128bd326a5b146ae1f557c0d1f06507afe8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1780990227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:49474d2b155e1d4ba1348057782fa1aa2b9ba8f3445fb676906e77cca0819c74_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:49474d2b155e1d4ba1348057782fa1aa2b9ba8f3445fb676906e77cca0819c74_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:49474d2b155e1d4ba1348057782fa1aa2b9ba8f3445fb676906e77cca0819c74_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A49474d2b155e1d4ba1348057782fa1aa2b9ba8f3445fb676906e77cca0819c74?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1780990143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fa5c6a0aa135900589ea639ad9897956ac6f721970a26127bbce4e4fc84edf3f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fa5c6a0aa135900589ea639ad9897956ac6f721970a26127bbce4e4fc84edf3f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fa5c6a0aa135900589ea639ad9897956ac6f721970a26127bbce4e4fc84edf3f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3Afa5c6a0aa135900589ea639ad9897956ac6f721970a26127bbce4e4fc84edf3f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1780990303"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8c3b870517808dcc62446f38034ab67d4deea71d2c9cd3603213288c21416a80_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8c3b870517808dcc62446f38034ab67d4deea71d2c9cd3603213288c21416a80_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8c3b870517808dcc62446f38034ab67d4deea71d2c9cd3603213288c21416a80_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A8c3b870517808dcc62446f38034ab67d4deea71d2c9cd3603213288c21416a80?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1780991868"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc11528e117a3437e92608eb9c4ece51ecab1851ef976365e11c3a48cba04d4e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc11528e117a3437e92608eb9c4ece51ecab1851ef976365e11c3a48cba04d4e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc11528e117a3437e92608eb9c4ece51ecab1851ef976365e11c3a48cba04d4e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Adc11528e117a3437e92608eb9c4ece51ecab1851ef976365e11c3a48cba04d4e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1780990107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:6a47fe76b8434cdc85523de45f6d224f081e3faf8d3a5cb25350c01e8ec9d1d6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:6a47fe76b8434cdc85523de45f6d224f081e3faf8d3a5cb25350c01e8ec9d1d6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:6a47fe76b8434cdc85523de45f6d224f081e3faf8d3a5cb25350c01e8ec9d1d6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A6a47fe76b8434cdc85523de45f6d224f081e3faf8d3a5cb25350c01e8ec9d1d6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1780993624"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:c66f2c708f32dda47f1f7cc9a1ea7dc97bc589265df73e589df2fe6693c7e09d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:c66f2c708f32dda47f1f7cc9a1ea7dc97bc589265df73e589df2fe6693c7e09d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:c66f2c708f32dda47f1f7cc9a1ea7dc97bc589265df73e589df2fe6693c7e09d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Ac66f2c708f32dda47f1f7cc9a1ea7dc97bc589265df73e589df2fe6693c7e09d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1780990684"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:fb6b0d958637a1b1293654f6fb771e375eba628f49d069b6b23a8655ee822207_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:fb6b0d958637a1b1293654f6fb771e375eba628f49d069b6b23a8655ee822207_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:fb6b0d958637a1b1293654f6fb771e375eba628f49d069b6b23a8655ee822207_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3Afb6b0d958637a1b1293654f6fb771e375eba628f49d069b6b23a8655ee822207?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1780991230"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:077318abc98d9cb1cf5e3888f10542895758badf63b7d1857e90d8fb260e10b8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:077318abc98d9cb1cf5e3888f10542895758badf63b7d1857e90d8fb260e10b8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:077318abc98d9cb1cf5e3888f10542895758badf63b7d1857e90d8fb260e10b8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A077318abc98d9cb1cf5e3888f10542895758badf63b7d1857e90d8fb260e10b8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1780989841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:c1b4b52f442b0e953bb147f91e66b6f8c9341d7517394bce17b785fd5711624b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:c1b4b52f442b0e953bb147f91e66b6f8c9341d7517394bce17b785fd5711624b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:c1b4b52f442b0e953bb147f91e66b6f8c9341d7517394bce17b785fd5711624b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3Ac1b4b52f442b0e953bb147f91e66b6f8c9341d7517394bce17b785fd5711624b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1780990141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:54cdbf92d06b09fa96db2ddc700943bc06e350b04b11ce6bb2efd2d01be69724_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:54cdbf92d06b09fa96db2ddc700943bc06e350b04b11ce6bb2efd2d01be69724_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:54cdbf92d06b09fa96db2ddc700943bc06e350b04b11ce6bb2efd2d01be69724_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A54cdbf92d06b09fa96db2ddc700943bc06e350b04b11ce6bb2efd2d01be69724?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1780991889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b4690ecace753cadab32d74668df5e756d11b8da467bbbae933526c81ac81f34_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b4690ecace753cadab32d74668df5e756d11b8da467bbbae933526c81ac81f34_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b4690ecace753cadab32d74668df5e756d11b8da467bbbae933526c81ac81f34_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Ab4690ecace753cadab32d74668df5e756d11b8da467bbbae933526c81ac81f34?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1780989693"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a9db266180d686a86fbdec53aa1fb5806fe6308121017dfcb61f064efff275ea_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a9db266180d686a86fbdec53aa1fb5806fe6308121017dfcb61f064efff275ea_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a9db266180d686a86fbdec53aa1fb5806fe6308121017dfcb61f064efff275ea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3Aa9db266180d686a86fbdec53aa1fb5806fe6308121017dfcb61f064efff275ea?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1780990661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:86b1946b0d17f8a8362da0c4a92de579de62fb8ebbf663460d004ffc3bf37b18_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:86b1946b0d17f8a8362da0c4a92de579de62fb8ebbf663460d004ffc3bf37b18_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:86b1946b0d17f8a8362da0c4a92de579de62fb8ebbf663460d004ffc3bf37b18_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A86b1946b0d17f8a8362da0c4a92de579de62fb8ebbf663460d004ffc3bf37b18?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1780989787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:0d5237572f55e577b134285cb4b9780995693f78b9ef72793644bdcaef395591_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:0d5237572f55e577b134285cb4b9780995693f78b9ef72793644bdcaef395591_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:0d5237572f55e577b134285cb4b9780995693f78b9ef72793644bdcaef395591_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A0d5237572f55e577b134285cb4b9780995693f78b9ef72793644bdcaef395591?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1780993920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:9c188f543cfb5ba855f78e7c3cb47574c9a455bfe39eda5cb56c776b702f55a9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:9c188f543cfb5ba855f78e7c3cb47574c9a455bfe39eda5cb56c776b702f55a9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:9c188f543cfb5ba855f78e7c3cb47574c9a455bfe39eda5cb56c776b702f55a9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A9c188f543cfb5ba855f78e7c3cb47574c9a455bfe39eda5cb56c776b702f55a9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1780990405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:940697a45ac27b5d78042e8b65edd9b1a85ffba4c79efc2fdd722c92f9c77229_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:940697a45ac27b5d78042e8b65edd9b1a85ffba4c79efc2fdd722c92f9c77229_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:940697a45ac27b5d78042e8b65edd9b1a85ffba4c79efc2fdd722c92f9c77229_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A940697a45ac27b5d78042e8b65edd9b1a85ffba4c79efc2fdd722c92f9c77229?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1780989705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:afc5b3f42b796f5993c25272567fda748e5baf98d17d0bef25edee8bbe92287b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:afc5b3f42b796f5993c25272567fda748e5baf98d17d0bef25edee8bbe92287b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:afc5b3f42b796f5993c25272567fda748e5baf98d17d0bef25edee8bbe92287b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Aafc5b3f42b796f5993c25272567fda748e5baf98d17d0bef25edee8bbe92287b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1780992345"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:db7f4278a3c8f8d959c25ff947164b1932515afd47533b867517568d9c37c08d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:db7f4278a3c8f8d959c25ff947164b1932515afd47533b867517568d9c37c08d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:db7f4278a3c8f8d959c25ff947164b1932515afd47533b867517568d9c37c08d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Adb7f4278a3c8f8d959c25ff947164b1932515afd47533b867517568d9c37c08d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1780990233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d64eb22891afd4b92c9d7e889c3d950895c99bf2916c786f61feef6d58f6860f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d64eb22891afd4b92c9d7e889c3d950895c99bf2916c786f61feef6d58f6860f_ppc64le",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d64eb22891afd4b92c9d7e889c3d950895c99bf2916c786f61feef6d58f6860f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Ad64eb22891afd4b92c9d7e889c3d950895c99bf2916c786f61feef6d58f6860f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1781101874"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7a9e7c2cc70f1539130cb7be4fec0aa2e575ac02fb76f19fe8c1f9c28688bfd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7a9e7c2cc70f1539130cb7be4fec0aa2e575ac02fb76f19fe8c1f9c28688bfd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7a9e7c2cc70f1539130cb7be4fec0aa2e575ac02fb76f19fe8c1f9c28688bfd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Af7a9e7c2cc70f1539130cb7be4fec0aa2e575ac02fb76f19fe8c1f9c28688bfd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1780990691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:828073b9004ecc533e43897ddd0fb845feeba262c48832cdd3083fa2822229e7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:828073b9004ecc533e43897ddd0fb845feeba262c48832cdd3083fa2822229e7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:828073b9004ecc533e43897ddd0fb845feeba262c48832cdd3083fa2822229e7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A828073b9004ecc533e43897ddd0fb845feeba262c48832cdd3083fa2822229e7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1780990095"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e403974b7d6c6cd723f5e743acca6f69d9827ee10112b1104e2b41c6ebcf2840_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e403974b7d6c6cd723f5e743acca6f69d9827ee10112b1104e2b41c6ebcf2840_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e403974b7d6c6cd723f5e743acca6f69d9827ee10112b1104e2b41c6ebcf2840_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3Ae403974b7d6c6cd723f5e743acca6f69d9827ee10112b1104e2b41c6ebcf2840?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1780993749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:22dac221d0a23556fe7f38b773a3ebb68725a0c1533baf0c940984fe3fd6de69_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:22dac221d0a23556fe7f38b773a3ebb68725a0c1533baf0c940984fe3fd6de69_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:22dac221d0a23556fe7f38b773a3ebb68725a0c1533baf0c940984fe3fd6de69_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A22dac221d0a23556fe7f38b773a3ebb68725a0c1533baf0c940984fe3fd6de69?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1780993652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:962daa988f75b92b553df53e771061206a8366b466bdb3af4a51007825846326_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:962daa988f75b92b553df53e771061206a8366b466bdb3af4a51007825846326_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:962daa988f75b92b553df53e771061206a8366b466bdb3af4a51007825846326_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A962daa988f75b92b553df53e771061206a8366b466bdb3af4a51007825846326?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1780990689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cd93e063731eca0e0a81af9bebf49787dfd37548c9c454e7ccd22353ef7ec27c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cd93e063731eca0e0a81af9bebf49787dfd37548c9c454e7ccd22353ef7ec27c_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cd93e063731eca0e0a81af9bebf49787dfd37548c9c454e7ccd22353ef7ec27c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Acd93e063731eca0e0a81af9bebf49787dfd37548c9c454e7ccd22353ef7ec27c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1781100849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9449c57185bc815790209a3b6650386563c2bed58eb957030a0bf4a8f53ecd35_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9449c57185bc815790209a3b6650386563c2bed58eb957030a0bf4a8f53ecd35_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9449c57185bc815790209a3b6650386563c2bed58eb957030a0bf4a8f53ecd35_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A9449c57185bc815790209a3b6650386563c2bed58eb957030a0bf4a8f53ecd35?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1780989644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:434c1f8becea09b3c603c7add8f6364e7407b6938fd2075cbc54bf759197567f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:434c1f8becea09b3c603c7add8f6364e7407b6938fd2075cbc54bf759197567f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:434c1f8becea09b3c603c7add8f6364e7407b6938fd2075cbc54bf759197567f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A434c1f8becea09b3c603c7add8f6364e7407b6938fd2075cbc54bf759197567f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1780989642"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d79774c1ad2355b71d68b76653781a13b476949fe5c19f047ca1f6d0ee3dab80_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d79774c1ad2355b71d68b76653781a13b476949fe5c19f047ca1f6d0ee3dab80_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d79774c1ad2355b71d68b76653781a13b476949fe5c19f047ca1f6d0ee3dab80_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Ad79774c1ad2355b71d68b76653781a13b476949fe5c19f047ca1f6d0ee3dab80?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1780990302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8a058e9269050e05ff5df9bbf6c92740c1ebd081c9dd8071e56178763bbdd2c1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8a058e9269050e05ff5df9bbf6c92740c1ebd081c9dd8071e56178763bbdd2c1_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8a058e9269050e05ff5df9bbf6c92740c1ebd081c9dd8071e56178763bbdd2c1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A8a058e9269050e05ff5df9bbf6c92740c1ebd081c9dd8071e56178763bbdd2c1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1781009068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:e86b8dffe071e2f753cc22e23fc915b6b40377058239713624690a558bd26f9a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:e86b8dffe071e2f753cc22e23fc915b6b40377058239713624690a558bd26f9a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:e86b8dffe071e2f753cc22e23fc915b6b40377058239713624690a558bd26f9a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3Ae86b8dffe071e2f753cc22e23fc915b6b40377058239713624690a558bd26f9a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1780989802"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:48e4ef50e863ce50a53b98cd15f9ffb5d470737458e5671a88a256117961f927_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:48e4ef50e863ce50a53b98cd15f9ffb5d470737458e5671a88a256117961f927_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:48e4ef50e863ce50a53b98cd15f9ffb5d470737458e5671a88a256117961f927_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A48e4ef50e863ce50a53b98cd15f9ffb5d470737458e5671a88a256117961f927?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1780991549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c7279fa6b42fa9d28899b40f792348ac9556498d7234390e8e670bb08f0ebbbb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c7279fa6b42fa9d28899b40f792348ac9556498d7234390e8e670bb08f0ebbbb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c7279fa6b42fa9d28899b40f792348ac9556498d7234390e8e670bb08f0ebbbb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3Ac7279fa6b42fa9d28899b40f792348ac9556498d7234390e8e670bb08f0ebbbb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1780992557"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:03275f8d2facfb8a8b9c07155f360bda87dc3af926773cbed48f7d365ec27230_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:03275f8d2facfb8a8b9c07155f360bda87dc3af926773cbed48f7d365ec27230_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:03275f8d2facfb8a8b9c07155f360bda87dc3af926773cbed48f7d365ec27230_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A03275f8d2facfb8a8b9c07155f360bda87dc3af926773cbed48f7d365ec27230?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1780989826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:93ed837d6007af5eeb9ca82e602224152371c24e0319c101f527289c1bbb681f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:93ed837d6007af5eeb9ca82e602224152371c24e0319c101f527289c1bbb681f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:93ed837d6007af5eeb9ca82e602224152371c24e0319c101f527289c1bbb681f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A93ed837d6007af5eeb9ca82e602224152371c24e0319c101f527289c1bbb681f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1780990825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:08c844ef4eca84bcf942c71ed9f38dfc14e6aec2aca5b59ea2467884bb0f6f84_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:08c844ef4eca84bcf942c71ed9f38dfc14e6aec2aca5b59ea2467884bb0f6f84_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:08c844ef4eca84bcf942c71ed9f38dfc14e6aec2aca5b59ea2467884bb0f6f84_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A08c844ef4eca84bcf942c71ed9f38dfc14e6aec2aca5b59ea2467884bb0f6f84?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1780990174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:32d7b17e180b15303e3d8c24c26d57f696f4919b1f52db41f75496f50313f827_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:32d7b17e180b15303e3d8c24c26d57f696f4919b1f52db41f75496f50313f827_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:32d7b17e180b15303e3d8c24c26d57f696f4919b1f52db41f75496f50313f827_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A32d7b17e180b15303e3d8c24c26d57f696f4919b1f52db41f75496f50313f827?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1780990225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:ce27bcfb5039720f2eaabb27f03a56570ed625c57918ae8bbbe4a6c690db60d8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:ce27bcfb5039720f2eaabb27f03a56570ed625c57918ae8bbbe4a6c690db60d8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:ce27bcfb5039720f2eaabb27f03a56570ed625c57918ae8bbbe4a6c690db60d8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-support-log-gather-rhel9-operator@sha256%3Ace27bcfb5039720f2eaabb27f03a56570ed625c57918ae8bbbe4a6c690db60d8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator\u0026tag=1780992274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:abd2abaa015db574e7ac72a08975353ff708d7c31a57c4ec67198dd461560a6a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:abd2abaa015db574e7ac72a08975353ff708d7c31a57c4ec67198dd461560a6a_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:abd2abaa015db574e7ac72a08975353ff708d7c31a57c4ec67198dd461560a6a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Aabd2abaa015db574e7ac72a08975353ff708d7c31a57c4ec67198dd461560a6a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1780990546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a32bec403165b14098cafc45326a9839205bfe25b7dd2b41efc04bca401fc569_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a32bec403165b14098cafc45326a9839205bfe25b7dd2b41efc04bca401fc569_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a32bec403165b14098cafc45326a9839205bfe25b7dd2b41efc04bca401fc569_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3Aa32bec403165b14098cafc45326a9839205bfe25b7dd2b41efc04bca401fc569?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1780992262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3a3c1715f3c6f0f770ac9e7f3ae798a72cd0f76acd78b6e6edfe313eb6166302_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3a3c1715f3c6f0f770ac9e7f3ae798a72cd0f76acd78b6e6edfe313eb6166302_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3a3c1715f3c6f0f770ac9e7f3ae798a72cd0f76acd78b6e6edfe313eb6166302_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A3a3c1715f3c6f0f770ac9e7f3ae798a72cd0f76acd78b6e6edfe313eb6166302?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1780989662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:06e88884fc4818f69672be37c5cad35dbb734ba6f5fcc522dc44216f172db9b0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:06e88884fc4818f69672be37c5cad35dbb734ba6f5fcc522dc44216f172db9b0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:06e88884fc4818f69672be37c5cad35dbb734ba6f5fcc522dc44216f172db9b0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A06e88884fc4818f69672be37c5cad35dbb734ba6f5fcc522dc44216f172db9b0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1780992467"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1b3cbf6fd6751f31215f6ab3b15b6d97a5cb0be42aaa48cbf4cb788bac7b7c43_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1b3cbf6fd6751f31215f6ab3b15b6d97a5cb0be42aaa48cbf4cb788bac7b7c43_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1b3cbf6fd6751f31215f6ab3b15b6d97a5cb0be42aaa48cbf4cb788bac7b7c43_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A1b3cbf6fd6751f31215f6ab3b15b6d97a5cb0be42aaa48cbf4cb788bac7b7c43?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1780989696"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:8e7ef7f1efb549b8ab1dac339791f83547414a236b172109cd30c904b1473a54_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:8e7ef7f1efb549b8ab1dac339791f83547414a236b172109cd30c904b1473a54_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:8e7ef7f1efb549b8ab1dac339791f83547414a236b172109cd30c904b1473a54_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A8e7ef7f1efb549b8ab1dac339791f83547414a236b172109cd30c904b1473a54?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1780990227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b5258b2a5e08e569c470f773da7f74c633aaff7a9926a10b06760f9787671437_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b5258b2a5e08e569c470f773da7f74c633aaff7a9926a10b06760f9787671437_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b5258b2a5e08e569c470f773da7f74c633aaff7a9926a10b06760f9787671437_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3Ab5258b2a5e08e569c470f773da7f74c633aaff7a9926a10b06760f9787671437?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1780990227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1f16a4f225c1cee7fbe62adf842acd4bf32837fb7afb349495db3fe20cd29eee_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1f16a4f225c1cee7fbe62adf842acd4bf32837fb7afb349495db3fe20cd29eee_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1f16a4f225c1cee7fbe62adf842acd4bf32837fb7afb349495db3fe20cd29eee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A1f16a4f225c1cee7fbe62adf842acd4bf32837fb7afb349495db3fe20cd29eee?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1780990143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:716a31cfce7060cb79a691722fdb10da8831a46e2cc12e6d55cc82f1dac9c8b2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:716a31cfce7060cb79a691722fdb10da8831a46e2cc12e6d55cc82f1dac9c8b2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:716a31cfce7060cb79a691722fdb10da8831a46e2cc12e6d55cc82f1dac9c8b2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A716a31cfce7060cb79a691722fdb10da8831a46e2cc12e6d55cc82f1dac9c8b2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1780990303"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:e4205c8134c7aa9362ff080311507c6e389b82dacf4e06e10461f3fb0a5d269f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:e4205c8134c7aa9362ff080311507c6e389b82dacf4e06e10461f3fb0a5d269f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:e4205c8134c7aa9362ff080311507c6e389b82dacf4e06e10461f3fb0a5d269f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3Ae4205c8134c7aa9362ff080311507c6e389b82dacf4e06e10461f3fb0a5d269f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1780991868"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f9790d3b627750498a64c219eaf80fd45687f06de957d61447cd7ce6f407d579_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f9790d3b627750498a64c219eaf80fd45687f06de957d61447cd7ce6f407d579_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f9790d3b627750498a64c219eaf80fd45687f06de957d61447cd7ce6f407d579_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Af9790d3b627750498a64c219eaf80fd45687f06de957d61447cd7ce6f407d579?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1780993624"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:232d37bdd66d0a677a72df50998deada932096a2cf4850c0101837c47967dcaa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:232d37bdd66d0a677a72df50998deada932096a2cf4850c0101837c47967dcaa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:232d37bdd66d0a677a72df50998deada932096a2cf4850c0101837c47967dcaa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A232d37bdd66d0a677a72df50998deada932096a2cf4850c0101837c47967dcaa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1780990684"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9670c21a8590d404178fc4eeaabef6a92fa6547257dd0f8f262eba896ead289f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9670c21a8590d404178fc4eeaabef6a92fa6547257dd0f8f262eba896ead289f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9670c21a8590d404178fc4eeaabef6a92fa6547257dd0f8f262eba896ead289f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A9670c21a8590d404178fc4eeaabef6a92fa6547257dd0f8f262eba896ead289f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1780991230"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:d28bcbdb922e937509f26720ffbbce9cc9df5e2a2cd2f7d5ce4f26ffdc235b61_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:d28bcbdb922e937509f26720ffbbce9cc9df5e2a2cd2f7d5ce4f26ffdc235b61_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:d28bcbdb922e937509f26720ffbbce9cc9df5e2a2cd2f7d5ce4f26ffdc235b61_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3Ad28bcbdb922e937509f26720ffbbce9cc9df5e2a2cd2f7d5ce4f26ffdc235b61?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1780989841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:3f1915177c59c6d5d1956df6208425c3595bb5fb6911cb9b4ffafaf84f6617fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:3f1915177c59c6d5d1956df6208425c3595bb5fb6911cb9b4ffafaf84f6617fa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:3f1915177c59c6d5d1956df6208425c3595bb5fb6911cb9b4ffafaf84f6617fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A3f1915177c59c6d5d1956df6208425c3595bb5fb6911cb9b4ffafaf84f6617fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1780990141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b9db0faf0afd5c15574a634b7471267f8a91e1d7a75d02f757a42f527c0daaeb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b9db0faf0afd5c15574a634b7471267f8a91e1d7a75d02f757a42f527c0daaeb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b9db0faf0afd5c15574a634b7471267f8a91e1d7a75d02f757a42f527c0daaeb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3Ab9db0faf0afd5c15574a634b7471267f8a91e1d7a75d02f757a42f527c0daaeb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1780991889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:adcf2604fe70820c1e26fc96914d6291072d1df557e635e9346e20742aff893b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:adcf2604fe70820c1e26fc96914d6291072d1df557e635e9346e20742aff893b_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:adcf2604fe70820c1e26fc96914d6291072d1df557e635e9346e20742aff893b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3Aadcf2604fe70820c1e26fc96914d6291072d1df557e635e9346e20742aff893b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1780990661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:565587a196a83dc02ff22150f621205580ada0c9a612b5ae7f81f7a0cd840df2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:565587a196a83dc02ff22150f621205580ada0c9a612b5ae7f81f7a0cd840df2_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:565587a196a83dc02ff22150f621205580ada0c9a612b5ae7f81f7a0cd840df2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A565587a196a83dc02ff22150f621205580ada0c9a612b5ae7f81f7a0cd840df2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1780989787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:470c1e99ea40d4b49f8fb2de6b60632aa799e28ed39ddc44ec0c70914041069f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:470c1e99ea40d4b49f8fb2de6b60632aa799e28ed39ddc44ec0c70914041069f_s390x",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:470c1e99ea40d4b49f8fb2de6b60632aa799e28ed39ddc44ec0c70914041069f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A470c1e99ea40d4b49f8fb2de6b60632aa799e28ed39ddc44ec0c70914041069f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1780993920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:06011801321cc34664abc8ed7ade2cf2e1ac96c0753966850e151cab815d61f8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:06011801321cc34664abc8ed7ade2cf2e1ac96c0753966850e151cab815d61f8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:06011801321cc34664abc8ed7ade2cf2e1ac96c0753966850e151cab815d61f8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A06011801321cc34664abc8ed7ade2cf2e1ac96c0753966850e151cab815d61f8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1780989705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ec2baac60b28249a0e5b0697abdb0e94b20571a344fd3dcc225c8c17fff2d1e4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ec2baac60b28249a0e5b0697abdb0e94b20571a344fd3dcc225c8c17fff2d1e4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ec2baac60b28249a0e5b0697abdb0e94b20571a344fd3dcc225c8c17fff2d1e4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Aec2baac60b28249a0e5b0697abdb0e94b20571a344fd3dcc225c8c17fff2d1e4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1780992345"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:84d5473750a2292d7d5acaad3e02a4febd81adf9eab9d92126c9abcdebc535a3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:84d5473750a2292d7d5acaad3e02a4febd81adf9eab9d92126c9abcdebc535a3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:84d5473750a2292d7d5acaad3e02a4febd81adf9eab9d92126c9abcdebc535a3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A84d5473750a2292d7d5acaad3e02a4febd81adf9eab9d92126c9abcdebc535a3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1780990233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:75033faed2096248c6cbac42d1b4be9d35fd18d08a3a48ed12b7feca131a3d3e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:75033faed2096248c6cbac42d1b4be9d35fd18d08a3a48ed12b7feca131a3d3e_s390x",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:75033faed2096248c6cbac42d1b4be9d35fd18d08a3a48ed12b7feca131a3d3e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A75033faed2096248c6cbac42d1b4be9d35fd18d08a3a48ed12b7feca131a3d3e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1781101874"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:74eda243b616e1eb074fa91121315d69c0c27a20155c3988dfd2a875e3267511_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:74eda243b616e1eb074fa91121315d69c0c27a20155c3988dfd2a875e3267511_s390x",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:74eda243b616e1eb074fa91121315d69c0c27a20155c3988dfd2a875e3267511_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A74eda243b616e1eb074fa91121315d69c0c27a20155c3988dfd2a875e3267511?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1780990691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ee1e0eb1be6a39cfb2e6a7a3597f3ab4d3ce99c837b0a7f7b85d3fa8fa88a040_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ee1e0eb1be6a39cfb2e6a7a3597f3ab4d3ce99c837b0a7f7b85d3fa8fa88a040_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ee1e0eb1be6a39cfb2e6a7a3597f3ab4d3ce99c837b0a7f7b85d3fa8fa88a040_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Aee1e0eb1be6a39cfb2e6a7a3597f3ab4d3ce99c837b0a7f7b85d3fa8fa88a040?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1780990095"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:69be0035bd4d768e9cc677b22ee92987edbc82864153836c52aee7d172c7db25_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:69be0035bd4d768e9cc677b22ee92987edbc82864153836c52aee7d172c7db25_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:69be0035bd4d768e9cc677b22ee92987edbc82864153836c52aee7d172c7db25_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A69be0035bd4d768e9cc677b22ee92987edbc82864153836c52aee7d172c7db25?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1780993749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9b59421d9efba7c9ed2d1e226f2a60e36f953865dc3ecfc7a1754170b629653e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9b59421d9efba7c9ed2d1e226f2a60e36f953865dc3ecfc7a1754170b629653e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9b59421d9efba7c9ed2d1e226f2a60e36f953865dc3ecfc7a1754170b629653e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A9b59421d9efba7c9ed2d1e226f2a60e36f953865dc3ecfc7a1754170b629653e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1780993652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e168693e564b59ca886bd8c263b8e909691dfccdbde3087287c2489ce1e0573a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e168693e564b59ca886bd8c263b8e909691dfccdbde3087287c2489ce1e0573a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e168693e564b59ca886bd8c263b8e909691dfccdbde3087287c2489ce1e0573a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Ae168693e564b59ca886bd8c263b8e909691dfccdbde3087287c2489ce1e0573a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1780990689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:abca6b24e30139fea6a4c8e366afee6f3fc692d403e6ac4abfd7f12b8112f079_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:abca6b24e30139fea6a4c8e366afee6f3fc692d403e6ac4abfd7f12b8112f079_s390x",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:abca6b24e30139fea6a4c8e366afee6f3fc692d403e6ac4abfd7f12b8112f079_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Aabca6b24e30139fea6a4c8e366afee6f3fc692d403e6ac4abfd7f12b8112f079?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1781100849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:8b77f098ad594c1ee48495ec4a0be0eea721c2940bf293e7b4a2f66fbe4a990e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:8b77f098ad594c1ee48495ec4a0be0eea721c2940bf293e7b4a2f66fbe4a990e_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:8b77f098ad594c1ee48495ec4a0be0eea721c2940bf293e7b4a2f66fbe4a990e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A8b77f098ad594c1ee48495ec4a0be0eea721c2940bf293e7b4a2f66fbe4a990e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1780990302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50456d037a3e6238cd4f047d7a4c229987a9b4faa2d2de28818c3b4229fc59a8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50456d037a3e6238cd4f047d7a4c229987a9b4faa2d2de28818c3b4229fc59a8_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50456d037a3e6238cd4f047d7a4c229987a9b4faa2d2de28818c3b4229fc59a8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A50456d037a3e6238cd4f047d7a4c229987a9b4faa2d2de28818c3b4229fc59a8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1781009068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6db2aef1b0a8bf3146cf0f7d89a5d738413b9debfad8eb9f313635545270c94f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6db2aef1b0a8bf3146cf0f7d89a5d738413b9debfad8eb9f313635545270c94f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6db2aef1b0a8bf3146cf0f7d89a5d738413b9debfad8eb9f313635545270c94f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A6db2aef1b0a8bf3146cf0f7d89a5d738413b9debfad8eb9f313635545270c94f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1780989802"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:da744e1b9c83b3e975d9f01df280bf7b2f0e133ca1640efb9b41fd7009728394_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:da744e1b9c83b3e975d9f01df280bf7b2f0e133ca1640efb9b41fd7009728394_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:da744e1b9c83b3e975d9f01df280bf7b2f0e133ca1640efb9b41fd7009728394_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3Ada744e1b9c83b3e975d9f01df280bf7b2f0e133ca1640efb9b41fd7009728394?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1780991549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:94c8ae1dee20291dabc8cecc118715ff70e2a53b07a68941c4cc4f6b7cbbbb1c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:94c8ae1dee20291dabc8cecc118715ff70e2a53b07a68941c4cc4f6b7cbbbb1c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:94c8ae1dee20291dabc8cecc118715ff70e2a53b07a68941c4cc4f6b7cbbbb1c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A94c8ae1dee20291dabc8cecc118715ff70e2a53b07a68941c4cc4f6b7cbbbb1c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1780992557"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ff0f47fb3e958723316472ace7c4a72f1c227c6d8153dfa78ca79e23340a8c06_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ff0f47fb3e958723316472ace7c4a72f1c227c6d8153dfa78ca79e23340a8c06_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ff0f47fb3e958723316472ace7c4a72f1c227c6d8153dfa78ca79e23340a8c06_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Aff0f47fb3e958723316472ace7c4a72f1c227c6d8153dfa78ca79e23340a8c06?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1780989826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:aef66c166327b5f36e4bc582a0e66b71959ba5de42cb5ed8e90a59918bd4c333_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:aef66c166327b5f36e4bc582a0e66b71959ba5de42cb5ed8e90a59918bd4c333_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:aef66c166327b5f36e4bc582a0e66b71959ba5de42cb5ed8e90a59918bd4c333_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3Aaef66c166327b5f36e4bc582a0e66b71959ba5de42cb5ed8e90a59918bd4c333?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1780990825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:5b921253da6415ddd642f609bdfd853312670009a0b872be4177ef6b7dfbf806_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:5b921253da6415ddd642f609bdfd853312670009a0b872be4177ef6b7dfbf806_s390x",
"product_id": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:5b921253da6415ddd642f609bdfd853312670009a0b872be4177ef6b7dfbf806_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-support-log-gather-rhel9-operator@sha256%3A5b921253da6415ddd642f609bdfd853312670009a0b872be4177ef6b7dfbf806?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator\u0026tag=1780992274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:b8e069ab6b0b27f717092182dd3c81b5ece705e655583fcd9d69bafecc3c2690_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:b8e069ab6b0b27f717092182dd3c81b5ece705e655583fcd9d69bafecc3c2690_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:b8e069ab6b0b27f717092182dd3c81b5ece705e655583fcd9d69bafecc3c2690_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Ab8e069ab6b0b27f717092182dd3c81b5ece705e655583fcd9d69bafecc3c2690?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1780990546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:bbe95f1191b2aa81c68cdc4c3124ae72259c02f739593fa531f9babb62879948_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:bbe95f1191b2aa81c68cdc4c3124ae72259c02f739593fa531f9babb62879948_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:bbe95f1191b2aa81c68cdc4c3124ae72259c02f739593fa531f9babb62879948_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3Abbe95f1191b2aa81c68cdc4c3124ae72259c02f739593fa531f9babb62879948?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1780992262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a5d18bc400edf4ddb0207d452586f3b64401ffa16656b2fdfb154957fdde67c1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a5d18bc400edf4ddb0207d452586f3b64401ffa16656b2fdfb154957fdde67c1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a5d18bc400edf4ddb0207d452586f3b64401ffa16656b2fdfb154957fdde67c1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3Aa5d18bc400edf4ddb0207d452586f3b64401ffa16656b2fdfb154957fdde67c1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1780990303"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f2c5fa540a38374d12557f71a8066117b1add90f09f9ab5006358b8ec2a320a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f2c5fa540a38374d12557f71a8066117b1add90f09f9ab5006358b8ec2a320a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f2c5fa540a38374d12557f71a8066117b1add90f09f9ab5006358b8ec2a320a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A6f2c5fa540a38374d12557f71a8066117b1add90f09f9ab5006358b8ec2a320a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1780991868"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:2c94df4cd32b010ab7d37189f82d7f96e680a555bc111a92cf2afe7d623f769d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:2c94df4cd32b010ab7d37189f82d7f96e680a555bc111a92cf2afe7d623f769d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:2c94df4cd32b010ab7d37189f82d7f96e680a555bc111a92cf2afe7d623f769d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:565587a196a83dc02ff22150f621205580ada0c9a612b5ae7f81f7a0cd840df2_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:565587a196a83dc02ff22150f621205580ada0c9a612b5ae7f81f7a0cd840df2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:565587a196a83dc02ff22150f621205580ada0c9a612b5ae7f81f7a0cd840df2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:86b1946b0d17f8a8362da0c4a92de579de62fb8ebbf663460d004ffc3bf37b18_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:86b1946b0d17f8a8362da0c4a92de579de62fb8ebbf663460d004ffc3bf37b18_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:86b1946b0d17f8a8362da0c4a92de579de62fb8ebbf663460d004ffc3bf37b18_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f18bc8f41b9a12bee6914be1bc0c0191ed6c6b011b72709e39375e2cfac85577_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f18bc8f41b9a12bee6914be1bc0c0191ed6c6b011b72709e39375e2cfac85577_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f18bc8f41b9a12bee6914be1bc0c0191ed6c6b011b72709e39375e2cfac85577_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4957fc95a32e9e58e7574bb054755b0e939f69c49a00d500bd99dd342ec2108c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4957fc95a32e9e58e7574bb054755b0e939f69c49a00d500bd99dd342ec2108c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4957fc95a32e9e58e7574bb054755b0e939f69c49a00d500bd99dd342ec2108c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a9db266180d686a86fbdec53aa1fb5806fe6308121017dfcb61f064efff275ea_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a9db266180d686a86fbdec53aa1fb5806fe6308121017dfcb61f064efff275ea_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a9db266180d686a86fbdec53aa1fb5806fe6308121017dfcb61f064efff275ea_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:ac7c733a1d501bac474d98900181e8822bdee6cb6b84148850c6eb9e1c4562d4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:ac7c733a1d501bac474d98900181e8822bdee6cb6b84148850c6eb9e1c4562d4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:ac7c733a1d501bac474d98900181e8822bdee6cb6b84148850c6eb9e1c4562d4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:adcf2604fe70820c1e26fc96914d6291072d1df557e635e9346e20742aff893b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:adcf2604fe70820c1e26fc96914d6291072d1df557e635e9346e20742aff893b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:adcf2604fe70820c1e26fc96914d6291072d1df557e635e9346e20742aff893b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:0d5237572f55e577b134285cb4b9780995693f78b9ef72793644bdcaef395591_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:0d5237572f55e577b134285cb4b9780995693f78b9ef72793644bdcaef395591_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:0d5237572f55e577b134285cb4b9780995693f78b9ef72793644bdcaef395591_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:470c1e99ea40d4b49f8fb2de6b60632aa799e28ed39ddc44ec0c70914041069f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:470c1e99ea40d4b49f8fb2de6b60632aa799e28ed39ddc44ec0c70914041069f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:470c1e99ea40d4b49f8fb2de6b60632aa799e28ed39ddc44ec0c70914041069f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:9dd1451787189cf9448b978b1595e21ff5d10cdf4390386c7711ec3b10c90b54_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:9dd1451787189cf9448b978b1595e21ff5d10cdf4390386c7711ec3b10c90b54_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:9dd1451787189cf9448b978b1595e21ff5d10cdf4390386c7711ec3b10c90b54_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b5edbfb87a64af390d3c66e5f9d6bf47cfd3aaf120ceba18dcb7739f8d748514_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b5edbfb87a64af390d3c66e5f9d6bf47cfd3aaf120ceba18dcb7739f8d748514_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b5edbfb87a64af390d3c66e5f9d6bf47cfd3aaf120ceba18dcb7739f8d748514_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:46c20bae85f471cb842c770fbfe5754571abf33f269b1b33a4101aa8338159d4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:46c20bae85f471cb842c770fbfe5754571abf33f269b1b33a4101aa8338159d4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:46c20bae85f471cb842c770fbfe5754571abf33f269b1b33a4101aa8338159d4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:abca6b24e30139fea6a4c8e366afee6f3fc692d403e6ac4abfd7f12b8112f079_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:abca6b24e30139fea6a4c8e366afee6f3fc692d403e6ac4abfd7f12b8112f079_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:abca6b24e30139fea6a4c8e366afee6f3fc692d403e6ac4abfd7f12b8112f079_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c37d9b5fb29ccd67c1188f8e96ecca8da7b4ed7dbbb5bd5cdb75ca927ff9f0b3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c37d9b5fb29ccd67c1188f8e96ecca8da7b4ed7dbbb5bd5cdb75ca927ff9f0b3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c37d9b5fb29ccd67c1188f8e96ecca8da7b4ed7dbbb5bd5cdb75ca927ff9f0b3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cd93e063731eca0e0a81af9bebf49787dfd37548c9c454e7ccd22353ef7ec27c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cd93e063731eca0e0a81af9bebf49787dfd37548c9c454e7ccd22353ef7ec27c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cd93e063731eca0e0a81af9bebf49787dfd37548c9c454e7ccd22353ef7ec27c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:1df9e36c7afa85458daa6512bbd91b370d60165d348a49c2dfecc716e787c926_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:1df9e36c7afa85458daa6512bbd91b370d60165d348a49c2dfecc716e787c926_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:1df9e36c7afa85458daa6512bbd91b370d60165d348a49c2dfecc716e787c926_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2fd436736db0a34557db5ddf1eff5a51cb872e5bd1fabda461cc5f531e57a213_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2fd436736db0a34557db5ddf1eff5a51cb872e5bd1fabda461cc5f531e57a213_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2fd436736db0a34557db5ddf1eff5a51cb872e5bd1fabda461cc5f531e57a213_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50456d037a3e6238cd4f047d7a4c229987a9b4faa2d2de28818c3b4229fc59a8_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50456d037a3e6238cd4f047d7a4c229987a9b4faa2d2de28818c3b4229fc59a8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50456d037a3e6238cd4f047d7a4c229987a9b4faa2d2de28818c3b4229fc59a8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8a058e9269050e05ff5df9bbf6c92740c1ebd081c9dd8071e56178763bbdd2c1_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8a058e9269050e05ff5df9bbf6c92740c1ebd081c9dd8071e56178763bbdd2c1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8a058e9269050e05ff5df9bbf6c92740c1ebd081c9dd8071e56178763bbdd2c1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:66553dcdeb9b568e7712f2888d3e7312b475e06d0ec86dad3cbe27ab0e3538ab_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:66553dcdeb9b568e7712f2888d3e7312b475e06d0ec86dad3cbe27ab0e3538ab_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:66553dcdeb9b568e7712f2888d3e7312b475e06d0ec86dad3cbe27ab0e3538ab_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:8b77f098ad594c1ee48495ec4a0be0eea721c2940bf293e7b4a2f66fbe4a990e_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:8b77f098ad594c1ee48495ec4a0be0eea721c2940bf293e7b4a2f66fbe4a990e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:8b77f098ad594c1ee48495ec4a0be0eea721c2940bf293e7b4a2f66fbe4a990e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:b79ca32b7852162f42f4649cc00babda1228e074d5c2ee48f9748df9f9aff326_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:b79ca32b7852162f42f4649cc00babda1228e074d5c2ee48f9748df9f9aff326_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:b79ca32b7852162f42f4649cc00babda1228e074d5c2ee48f9748df9f9aff326_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d79774c1ad2355b71d68b76653781a13b476949fe5c19f047ca1f6d0ee3dab80_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:d79774c1ad2355b71d68b76653781a13b476949fe5c19f047ca1f6d0ee3dab80_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d79774c1ad2355b71d68b76653781a13b476949fe5c19f047ca1f6d0ee3dab80_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0a6b23cf1028b858b61334e3d4bf504a7895517373d28bce10c94fb3622a8edf_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0a6b23cf1028b858b61334e3d4bf504a7895517373d28bce10c94fb3622a8edf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0a6b23cf1028b858b61334e3d4bf504a7895517373d28bce10c94fb3622a8edf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:483f733cdc78157f9e1c07c221b04dbe56dea287e5f1df2c71ac7fa9d4add7a2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:483f733cdc78157f9e1c07c221b04dbe56dea287e5f1df2c71ac7fa9d4add7a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:483f733cdc78157f9e1c07c221b04dbe56dea287e5f1df2c71ac7fa9d4add7a2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:75033faed2096248c6cbac42d1b4be9d35fd18d08a3a48ed12b7feca131a3d3e_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:75033faed2096248c6cbac42d1b4be9d35fd18d08a3a48ed12b7feca131a3d3e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:75033faed2096248c6cbac42d1b4be9d35fd18d08a3a48ed12b7feca131a3d3e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d64eb22891afd4b92c9d7e889c3d950895c99bf2916c786f61feef6d58f6860f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d64eb22891afd4b92c9d7e889c3d950895c99bf2916c786f61feef6d58f6860f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d64eb22891afd4b92c9d7e889c3d950895c99bf2916c786f61feef6d58f6860f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:828073b9004ecc533e43897ddd0fb845feeba262c48832cdd3083fa2822229e7_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:828073b9004ecc533e43897ddd0fb845feeba262c48832cdd3083fa2822229e7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:828073b9004ecc533e43897ddd0fb845feeba262c48832cdd3083fa2822229e7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a78e8078414d4b8e9496d7f1986a6ac6a9a648b5e561415b563bc1827d870ffe_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a78e8078414d4b8e9496d7f1986a6ac6a9a648b5e561415b563bc1827d870ffe_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a78e8078414d4b8e9496d7f1986a6ac6a9a648b5e561415b563bc1827d870ffe_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:bcd4821d104293600d92ec3efb0967baa2e396f8a192e6b70918a5d0f5fa0272_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:bcd4821d104293600d92ec3efb0967baa2e396f8a192e6b70918a5d0f5fa0272_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:bcd4821d104293600d92ec3efb0967baa2e396f8a192e6b70918a5d0f5fa0272_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ee1e0eb1be6a39cfb2e6a7a3597f3ab4d3ce99c837b0a7f7b85d3fa8fa88a040_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ee1e0eb1be6a39cfb2e6a7a3597f3ab4d3ce99c837b0a7f7b85d3fa8fa88a040_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ee1e0eb1be6a39cfb2e6a7a3597f3ab4d3ce99c837b0a7f7b85d3fa8fa88a040_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:3c7242b0b822a2aadffd9906478f01608b538f673900163a60fcfa086d375906_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:3c7242b0b822a2aadffd9906478f01608b538f673900163a60fcfa086d375906_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:3c7242b0b822a2aadffd9906478f01608b538f673900163a60fcfa086d375906_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:6df1c2bf8515d1af6afdf92ce3b2eee4505b0adede1d4f9de42a461c294c3af7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:6df1c2bf8515d1af6afdf92ce3b2eee4505b0adede1d4f9de42a461c294c3af7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:6df1c2bf8515d1af6afdf92ce3b2eee4505b0adede1d4f9de42a461c294c3af7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:2ce01e19a15a61c01b73284263ccbb0f58f8f08dc8322c61ab3ce99af6436b19_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:2ce01e19a15a61c01b73284263ccbb0f58f8f08dc8322c61ab3ce99af6436b19_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:2ce01e19a15a61c01b73284263ccbb0f58f8f08dc8322c61ab3ce99af6436b19_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:7329a64e3ad7c0661c610ba516a1f02bd0f988dbd0ac552d7c60f90a2bafd5e2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:7329a64e3ad7c0661c610ba516a1f02bd0f988dbd0ac552d7c60f90a2bafd5e2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:7329a64e3ad7c0661c610ba516a1f02bd0f988dbd0ac552d7c60f90a2bafd5e2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:78ac87a45b3ecd7f7f11af6aaf9f0e6b043c4e1b9046a3e8486a70db2d5f63ee_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:78ac87a45b3ecd7f7f11af6aaf9f0e6b043c4e1b9046a3e8486a70db2d5f63ee_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:78ac87a45b3ecd7f7f11af6aaf9f0e6b043c4e1b9046a3e8486a70db2d5f63ee_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc11528e117a3437e92608eb9c4ece51ecab1851ef976365e11c3a48cba04d4e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc11528e117a3437e92608eb9c4ece51ecab1851ef976365e11c3a48cba04d4e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc11528e117a3437e92608eb9c4ece51ecab1851ef976365e11c3a48cba04d4e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f0caad7678dc21d891d18b0ce27e5b08e103f4e1196b8f0bd09dfd5f3aefafd3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f0caad7678dc21d891d18b0ce27e5b08e103f4e1196b8f0bd09dfd5f3aefafd3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f0caad7678dc21d891d18b0ce27e5b08e103f4e1196b8f0bd09dfd5f3aefafd3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0c909d66cbf969cbe11968a07bc45b88ceaf48318eda1383078eae246555c3af_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0c909d66cbf969cbe11968a07bc45b88ceaf48318eda1383078eae246555c3af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0c909d66cbf969cbe11968a07bc45b88ceaf48318eda1383078eae246555c3af_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:69be0035bd4d768e9cc677b22ee92987edbc82864153836c52aee7d172c7db25_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:69be0035bd4d768e9cc677b22ee92987edbc82864153836c52aee7d172c7db25_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:69be0035bd4d768e9cc677b22ee92987edbc82864153836c52aee7d172c7db25_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:714de7953e67ca5939f7f29b6646f808411b6aa19c67bb71c83bfde43ec6a135_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:714de7953e67ca5939f7f29b6646f808411b6aa19c67bb71c83bfde43ec6a135_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:714de7953e67ca5939f7f29b6646f808411b6aa19c67bb71c83bfde43ec6a135_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e403974b7d6c6cd723f5e743acca6f69d9827ee10112b1104e2b41c6ebcf2840_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e403974b7d6c6cd723f5e743acca6f69d9827ee10112b1104e2b41c6ebcf2840_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e403974b7d6c6cd723f5e743acca6f69d9827ee10112b1104e2b41c6ebcf2840_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:43e8b775d57b784cda9d69d68d6035e28e2459c3d29b8ce1a518c80aff640d70_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:43e8b775d57b784cda9d69d68d6035e28e2459c3d29b8ce1a518c80aff640d70_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:43e8b775d57b784cda9d69d68d6035e28e2459c3d29b8ce1a518c80aff640d70_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5d2f312f0a4fd8db4299d3c213d8bfa9281ec7d5373b96490d08cb539b7eff9e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5d2f312f0a4fd8db4299d3c213d8bfa9281ec7d5373b96490d08cb539b7eff9e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5d2f312f0a4fd8db4299d3c213d8bfa9281ec7d5373b96490d08cb539b7eff9e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:6a47fe76b8434cdc85523de45f6d224f081e3faf8d3a5cb25350c01e8ec9d1d6_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:6a47fe76b8434cdc85523de45f6d224f081e3faf8d3a5cb25350c01e8ec9d1d6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:6a47fe76b8434cdc85523de45f6d224f081e3faf8d3a5cb25350c01e8ec9d1d6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f9790d3b627750498a64c219eaf80fd45687f06de957d61447cd7ce6f407d579_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f9790d3b627750498a64c219eaf80fd45687f06de957d61447cd7ce6f407d579_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f9790d3b627750498a64c219eaf80fd45687f06de957d61447cd7ce6f407d579_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1afa425a522b662e832d1aabef58887bdd7c0a7fec00a2fc2dbd733ce49e3d8b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1afa425a522b662e832d1aabef58887bdd7c0a7fec00a2fc2dbd733ce49e3d8b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1afa425a522b662e832d1aabef58887bdd7c0a7fec00a2fc2dbd733ce49e3d8b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9670c21a8590d404178fc4eeaabef6a92fa6547257dd0f8f262eba896ead289f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9670c21a8590d404178fc4eeaabef6a92fa6547257dd0f8f262eba896ead289f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9670c21a8590d404178fc4eeaabef6a92fa6547257dd0f8f262eba896ead289f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:bcdfcc44aa3a4e76a8f370e653c87501146b39fbfb1682875e1378b26377571a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:bcdfcc44aa3a4e76a8f370e653c87501146b39fbfb1682875e1378b26377571a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:bcdfcc44aa3a4e76a8f370e653c87501146b39fbfb1682875e1378b26377571a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:fb6b0d958637a1b1293654f6fb771e375eba628f49d069b6b23a8655ee822207_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:fb6b0d958637a1b1293654f6fb771e375eba628f49d069b6b23a8655ee822207_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:fb6b0d958637a1b1293654f6fb771e375eba628f49d069b6b23a8655ee822207_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:232d37bdd66d0a677a72df50998deada932096a2cf4850c0101837c47967dcaa_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:232d37bdd66d0a677a72df50998deada932096a2cf4850c0101837c47967dcaa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:232d37bdd66d0a677a72df50998deada932096a2cf4850c0101837c47967dcaa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:384add612089ea21ef5a1ea14615f26663f57b23a74c1909165676b1fcb320a0_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:384add612089ea21ef5a1ea14615f26663f57b23a74c1909165676b1fcb320a0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:384add612089ea21ef5a1ea14615f26663f57b23a74c1909165676b1fcb320a0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8566d93798ea66d637eab1872a29f29753f5779785e0c9c63c9ec1ddbbbfb231_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8566d93798ea66d637eab1872a29f29753f5779785e0c9c63c9ec1ddbbbfb231_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8566d93798ea66d637eab1872a29f29753f5779785e0c9c63c9ec1ddbbbfb231_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:c66f2c708f32dda47f1f7cc9a1ea7dc97bc589265df73e589df2fe6693c7e09d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:c66f2c708f32dda47f1f7cc9a1ea7dc97bc589265df73e589df2fe6693c7e09d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:c66f2c708f32dda47f1f7cc9a1ea7dc97bc589265df73e589df2fe6693c7e09d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0067b843e3534040ef7620715c2f86bb141882cc32df577438aaa321f5141596_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0067b843e3534040ef7620715c2f86bb141882cc32df577438aaa321f5141596_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0067b843e3534040ef7620715c2f86bb141882cc32df577438aaa321f5141596_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:077318abc98d9cb1cf5e3888f10542895758badf63b7d1857e90d8fb260e10b8_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:077318abc98d9cb1cf5e3888f10542895758badf63b7d1857e90d8fb260e10b8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:077318abc98d9cb1cf5e3888f10542895758badf63b7d1857e90d8fb260e10b8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b47b354cdd0b1046cc2ca7195520fe9929d25a258cacd4ddbda0394f030cf0ff_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b47b354cdd0b1046cc2ca7195520fe9929d25a258cacd4ddbda0394f030cf0ff_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b47b354cdd0b1046cc2ca7195520fe9929d25a258cacd4ddbda0394f030cf0ff_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:d28bcbdb922e937509f26720ffbbce9cc9df5e2a2cd2f7d5ce4f26ffdc235b61_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:d28bcbdb922e937509f26720ffbbce9cc9df5e2a2cd2f7d5ce4f26ffdc235b61_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:d28bcbdb922e937509f26720ffbbce9cc9df5e2a2cd2f7d5ce4f26ffdc235b61_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:23bd9724dd89ad3b955d02ee7c181ed2323dc517f62642d37171e84f7584c796_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:23bd9724dd89ad3b955d02ee7c181ed2323dc517f62642d37171e84f7584c796_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:23bd9724dd89ad3b955d02ee7c181ed2323dc517f62642d37171e84f7584c796_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:3f1915177c59c6d5d1956df6208425c3595bb5fb6911cb9b4ffafaf84f6617fa_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:3f1915177c59c6d5d1956df6208425c3595bb5fb6911cb9b4ffafaf84f6617fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:3f1915177c59c6d5d1956df6208425c3595bb5fb6911cb9b4ffafaf84f6617fa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:c1b4b52f442b0e953bb147f91e66b6f8c9341d7517394bce17b785fd5711624b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:c1b4b52f442b0e953bb147f91e66b6f8c9341d7517394bce17b785fd5711624b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:c1b4b52f442b0e953bb147f91e66b6f8c9341d7517394bce17b785fd5711624b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbbcc6e31faaa1ef83e15354f0be0ed2c8f078e6ffed2eb4456bdbab1704b480_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbbcc6e31faaa1ef83e15354f0be0ed2c8f078e6ffed2eb4456bdbab1704b480_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbbcc6e31faaa1ef83e15354f0be0ed2c8f078e6ffed2eb4456bdbab1704b480_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:74795f21968adbcaeeaae9e6a8b072d80749cb8bb38e93161f3b0e7badf2eb15_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:74795f21968adbcaeeaae9e6a8b072d80749cb8bb38e93161f3b0e7badf2eb15_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:74795f21968adbcaeeaae9e6a8b072d80749cb8bb38e93161f3b0e7badf2eb15_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:d9800e6b0161cd0517644746a5aa3381da7ef489405103d47e8cbb23cfcdb64c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:d9800e6b0161cd0517644746a5aa3381da7ef489405103d47e8cbb23cfcdb64c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:d9800e6b0161cd0517644746a5aa3381da7ef489405103d47e8cbb23cfcdb64c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:64beb43b5d803f1c72e6bf3e93cb080510cef99d97ae4ba97c1b2ed5373a3b9d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:64beb43b5d803f1c72e6bf3e93cb080510cef99d97ae4ba97c1b2ed5373a3b9d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:64beb43b5d803f1c72e6bf3e93cb080510cef99d97ae4ba97c1b2ed5373a3b9d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:90c1b58b7b81275f3e21c2b434927c09d35850058d155faa640c4887c29a2ce0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:90c1b58b7b81275f3e21c2b434927c09d35850058d155faa640c4887c29a2ce0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:90c1b58b7b81275f3e21c2b434927c09d35850058d155faa640c4887c29a2ce0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:1379072258e060afea437e8e868ef778261f9200e33ac50a71cee158f1966e04_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:1379072258e060afea437e8e868ef778261f9200e33ac50a71cee158f1966e04_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:1379072258e060afea437e8e868ef778261f9200e33ac50a71cee158f1966e04_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:54cdbf92d06b09fa96db2ddc700943bc06e350b04b11ce6bb2efd2d01be69724_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:54cdbf92d06b09fa96db2ddc700943bc06e350b04b11ce6bb2efd2d01be69724_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:54cdbf92d06b09fa96db2ddc700943bc06e350b04b11ce6bb2efd2d01be69724_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b9db0faf0afd5c15574a634b7471267f8a91e1d7a75d02f757a42f527c0daaeb_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b9db0faf0afd5c15574a634b7471267f8a91e1d7a75d02f757a42f527c0daaeb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b9db0faf0afd5c15574a634b7471267f8a91e1d7a75d02f757a42f527c0daaeb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:cf5adcbc1c3723265dbd4bd5ca32068fdec7d646e1f29cf89d1dd421174b1e61_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:cf5adcbc1c3723265dbd4bd5ca32068fdec7d646e1f29cf89d1dd421174b1e61_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:cf5adcbc1c3723265dbd4bd5ca32068fdec7d646e1f29cf89d1dd421174b1e61_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1da397c213c1aabee4f18456a10bc135248c4c19a46238fdbf7125ad099c6bed_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1da397c213c1aabee4f18456a10bc135248c4c19a46238fdbf7125ad099c6bed_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1da397c213c1aabee4f18456a10bc135248c4c19a46238fdbf7125ad099c6bed_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:434c1f8becea09b3c603c7add8f6364e7407b6938fd2075cbc54bf759197567f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:434c1f8becea09b3c603c7add8f6364e7407b6938fd2075cbc54bf759197567f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:434c1f8becea09b3c603c7add8f6364e7407b6938fd2075cbc54bf759197567f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:6c2483950c50e5e6b7301cb63dae09e7aa2fbc2289375a14338b3f4bb3850957_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:6c2483950c50e5e6b7301cb63dae09e7aa2fbc2289375a14338b3f4bb3850957_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:6c2483950c50e5e6b7301cb63dae09e7aa2fbc2289375a14338b3f4bb3850957_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:15a7e0076980f322a7272c25a00f0bf6ce6fdb31e34f687318844f90a9cc8f79_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:15a7e0076980f322a7272c25a00f0bf6ce6fdb31e34f687318844f90a9cc8f79_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:15a7e0076980f322a7272c25a00f0bf6ce6fdb31e34f687318844f90a9cc8f79_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:560dca12fdb11f4705c523bf35f13cf4a13bb61ebb6aa67d6f6ee888803089a5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:560dca12fdb11f4705c523bf35f13cf4a13bb61ebb6aa67d6f6ee888803089a5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:560dca12fdb11f4705c523bf35f13cf4a13bb61ebb6aa67d6f6ee888803089a5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9449c57185bc815790209a3b6650386563c2bed58eb957030a0bf4a8f53ecd35_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9449c57185bc815790209a3b6650386563c2bed58eb957030a0bf4a8f53ecd35_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9449c57185bc815790209a3b6650386563c2bed58eb957030a0bf4a8f53ecd35_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0805130b18b579ff8aff2adc253432a21c24b1bce49da0fef56009e538c0cc8e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0805130b18b579ff8aff2adc253432a21c24b1bce49da0fef56009e538c0cc8e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0805130b18b579ff8aff2adc253432a21c24b1bce49da0fef56009e538c0cc8e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:22dac221d0a23556fe7f38b773a3ebb68725a0c1533baf0c940984fe3fd6de69_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:22dac221d0a23556fe7f38b773a3ebb68725a0c1533baf0c940984fe3fd6de69_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:22dac221d0a23556fe7f38b773a3ebb68725a0c1533baf0c940984fe3fd6de69_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d023969beb12068dd65f468b87c20911a657733001caf3a7e052b44889676fc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d023969beb12068dd65f468b87c20911a657733001caf3a7e052b44889676fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d023969beb12068dd65f468b87c20911a657733001caf3a7e052b44889676fc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9b59421d9efba7c9ed2d1e226f2a60e36f953865dc3ecfc7a1754170b629653e_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9b59421d9efba7c9ed2d1e226f2a60e36f953865dc3ecfc7a1754170b629653e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9b59421d9efba7c9ed2d1e226f2a60e36f953865dc3ecfc7a1754170b629653e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:59e476792f09ae69ceb0e4d40120ba6366d141dbbd009ffeb0d592afd27b6edd_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:59e476792f09ae69ceb0e4d40120ba6366d141dbbd009ffeb0d592afd27b6edd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:59e476792f09ae69ceb0e4d40120ba6366d141dbbd009ffeb0d592afd27b6edd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:962daa988f75b92b553df53e771061206a8366b466bdb3af4a51007825846326_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:962daa988f75b92b553df53e771061206a8366b466bdb3af4a51007825846326_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:962daa988f75b92b553df53e771061206a8366b466bdb3af4a51007825846326_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e168693e564b59ca886bd8c263b8e909691dfccdbde3087287c2489ce1e0573a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e168693e564b59ca886bd8c263b8e909691dfccdbde3087287c2489ce1e0573a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e168693e564b59ca886bd8c263b8e909691dfccdbde3087287c2489ce1e0573a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f18239411b6923cdda7a734a128448837eaf66661999b756178f8471f838f4e1_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f18239411b6923cdda7a734a128448837eaf66661999b756178f8471f838f4e1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f18239411b6923cdda7a734a128448837eaf66661999b756178f8471f838f4e1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:06011801321cc34664abc8ed7ade2cf2e1ac96c0753966850e151cab815d61f8_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:06011801321cc34664abc8ed7ade2cf2e1ac96c0753966850e151cab815d61f8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:06011801321cc34664abc8ed7ade2cf2e1ac96c0753966850e151cab815d61f8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:940697a45ac27b5d78042e8b65edd9b1a85ffba4c79efc2fdd722c92f9c77229_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:940697a45ac27b5d78042e8b65edd9b1a85ffba4c79efc2fdd722c92f9c77229_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:940697a45ac27b5d78042e8b65edd9b1a85ffba4c79efc2fdd722c92f9c77229_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:eab89e17049e0934a063324cfbc1dcb0c412ef7d9c80fcab35b9c2c9fbeab900_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:eab89e17049e0934a063324cfbc1dcb0c412ef7d9c80fcab35b9c2c9fbeab900_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:eab89e17049e0934a063324cfbc1dcb0c412ef7d9c80fcab35b9c2c9fbeab900_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4d1d53fcf2bbb9273a5a1711f5f1f6b76dedb89a50bff6c2e78fff2b9b91347_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4d1d53fcf2bbb9273a5a1711f5f1f6b76dedb89a50bff6c2e78fff2b9b91347_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4d1d53fcf2bbb9273a5a1711f5f1f6b76dedb89a50bff6c2e78fff2b9b91347_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:87436f44eeb0025b95161692eecca9a368d966dadf2a45ec1c4732ff57127b6c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:87436f44eeb0025b95161692eecca9a368d966dadf2a45ec1c4732ff57127b6c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:87436f44eeb0025b95161692eecca9a368d966dadf2a45ec1c4732ff57127b6c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:afc5b3f42b796f5993c25272567fda748e5baf98d17d0bef25edee8bbe92287b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:afc5b3f42b796f5993c25272567fda748e5baf98d17d0bef25edee8bbe92287b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:afc5b3f42b796f5993c25272567fda748e5baf98d17d0bef25edee8bbe92287b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c1ebd5f8cbc416b320e898a4cc49ad9b0ad4adb2dabc126210819e13f573cc9e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c1ebd5f8cbc416b320e898a4cc49ad9b0ad4adb2dabc126210819e13f573cc9e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c1ebd5f8cbc416b320e898a4cc49ad9b0ad4adb2dabc126210819e13f573cc9e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ec2baac60b28249a0e5b0697abdb0e94b20571a344fd3dcc225c8c17fff2d1e4_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ec2baac60b28249a0e5b0697abdb0e94b20571a344fd3dcc225c8c17fff2d1e4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ec2baac60b28249a0e5b0697abdb0e94b20571a344fd3dcc225c8c17fff2d1e4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:17f2eb80baeccc29ffb82d2da9bb0ed485fbab02def7d9cd436e44544b8d1b3c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:17f2eb80baeccc29ffb82d2da9bb0ed485fbab02def7d9cd436e44544b8d1b3c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:17f2eb80baeccc29ffb82d2da9bb0ed485fbab02def7d9cd436e44544b8d1b3c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:84d5473750a2292d7d5acaad3e02a4febd81adf9eab9d92126c9abcdebc535a3_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:84d5473750a2292d7d5acaad3e02a4febd81adf9eab9d92126c9abcdebc535a3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:84d5473750a2292d7d5acaad3e02a4febd81adf9eab9d92126c9abcdebc535a3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:9a7eabe2ee2b28e0121355ef1a9f5632fe97820b6c7f772a6cfdb7e595ca9fd1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:9a7eabe2ee2b28e0121355ef1a9f5632fe97820b6c7f772a6cfdb7e595ca9fd1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:9a7eabe2ee2b28e0121355ef1a9f5632fe97820b6c7f772a6cfdb7e595ca9fd1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:db7f4278a3c8f8d959c25ff947164b1932515afd47533b867517568d9c37c08d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:db7f4278a3c8f8d959c25ff947164b1932515afd47533b867517568d9c37c08d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:db7f4278a3c8f8d959c25ff947164b1932515afd47533b867517568d9c37c08d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5e59cd9305ae7cee8192800f6c58501ea58ab8878ce335a16ad2e2f4ef39198e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5e59cd9305ae7cee8192800f6c58501ea58ab8878ce335a16ad2e2f4ef39198e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5e59cd9305ae7cee8192800f6c58501ea58ab8878ce335a16ad2e2f4ef39198e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:74eda243b616e1eb074fa91121315d69c0c27a20155c3988dfd2a875e3267511_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:74eda243b616e1eb074fa91121315d69c0c27a20155c3988dfd2a875e3267511_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:74eda243b616e1eb074fa91121315d69c0c27a20155c3988dfd2a875e3267511_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bc9b3404f83830558f0173c9631252fd5c3ad64eb1e50c3970504c38a9676f57_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bc9b3404f83830558f0173c9631252fd5c3ad64eb1e50c3970504c38a9676f57_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bc9b3404f83830558f0173c9631252fd5c3ad64eb1e50c3970504c38a9676f57_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7a9e7c2cc70f1539130cb7be4fec0aa2e575ac02fb76f19fe8c1f9c28688bfd_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7a9e7c2cc70f1539130cb7be4fec0aa2e575ac02fb76f19fe8c1f9c28688bfd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7a9e7c2cc70f1539130cb7be4fec0aa2e575ac02fb76f19fe8c1f9c28688bfd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3a3c1715f3c6f0f770ac9e7f3ae798a72cd0f76acd78b6e6edfe313eb6166302_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3a3c1715f3c6f0f770ac9e7f3ae798a72cd0f76acd78b6e6edfe313eb6166302_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3a3c1715f3c6f0f770ac9e7f3ae798a72cd0f76acd78b6e6edfe313eb6166302_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4e7f03c301e6642913fe4d5c5d50856597401c04f8fe7233d64dbcd83db1fda0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4e7f03c301e6642913fe4d5c5d50856597401c04f8fe7233d64dbcd83db1fda0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4e7f03c301e6642913fe4d5c5d50856597401c04f8fe7233d64dbcd83db1fda0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9c8cd5266a91bbc3f1959ddb336447bce41d8bdbb3e8822991c1144677eccc27_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9c8cd5266a91bbc3f1959ddb336447bce41d8bdbb3e8822991c1144677eccc27_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9c8cd5266a91bbc3f1959ddb336447bce41d8bdbb3e8822991c1144677eccc27_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:77b0afcd82f34e5dc2d953129d3a506425ad61b7366c12dc4f18b83dd8b41f81_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:77b0afcd82f34e5dc2d953129d3a506425ad61b7366c12dc4f18b83dd8b41f81_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:77b0afcd82f34e5dc2d953129d3a506425ad61b7366c12dc4f18b83dd8b41f81_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:9c188f543cfb5ba855f78e7c3cb47574c9a455bfe39eda5cb56c776b702f55a9_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:9c188f543cfb5ba855f78e7c3cb47574c9a455bfe39eda5cb56c776b702f55a9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:9c188f543cfb5ba855f78e7c3cb47574c9a455bfe39eda5cb56c776b702f55a9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c11e34afa310b5486e5808ec20bd1961bd787722e73751f503d215c41486f565_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c11e34afa310b5486e5808ec20bd1961bd787722e73751f503d215c41486f565_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c11e34afa310b5486e5808ec20bd1961bd787722e73751f503d215c41486f565_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:48e4ef50e863ce50a53b98cd15f9ffb5d470737458e5671a88a256117961f927_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:48e4ef50e863ce50a53b98cd15f9ffb5d470737458e5671a88a256117961f927_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:48e4ef50e863ce50a53b98cd15f9ffb5d470737458e5671a88a256117961f927_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8af50941ea73163e9ed77af1f502645340ffe54b7a0d26a67f09ec0b208a03f9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8af50941ea73163e9ed77af1f502645340ffe54b7a0d26a67f09ec0b208a03f9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8af50941ea73163e9ed77af1f502645340ffe54b7a0d26a67f09ec0b208a03f9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:da744e1b9c83b3e975d9f01df280bf7b2f0e133ca1640efb9b41fd7009728394_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:da744e1b9c83b3e975d9f01df280bf7b2f0e133ca1640efb9b41fd7009728394_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:da744e1b9c83b3e975d9f01df280bf7b2f0e133ca1640efb9b41fd7009728394_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e0d986c7d8c7482c972852f2133073968caf42be5eb3edf8f42e97c2fa56f130_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e0d986c7d8c7482c972852f2133073968caf42be5eb3edf8f42e97c2fa56f130_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e0d986c7d8c7482c972852f2133073968caf42be5eb3edf8f42e97c2fa56f130_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:45b531f3efacc195ff0d0b2d5e5171f06ddd75a4e026e531b96c709211efd67b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:45b531f3efacc195ff0d0b2d5e5171f06ddd75a4e026e531b96c709211efd67b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:45b531f3efacc195ff0d0b2d5e5171f06ddd75a4e026e531b96c709211efd67b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6db2aef1b0a8bf3146cf0f7d89a5d738413b9debfad8eb9f313635545270c94f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6db2aef1b0a8bf3146cf0f7d89a5d738413b9debfad8eb9f313635545270c94f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6db2aef1b0a8bf3146cf0f7d89a5d738413b9debfad8eb9f313635545270c94f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:75f9ca90baa675997cbd5953c14ded1c23eb139cd151ac27cb00b22d03615a80_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:75f9ca90baa675997cbd5953c14ded1c23eb139cd151ac27cb00b22d03615a80_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:75f9ca90baa675997cbd5953c14ded1c23eb139cd151ac27cb00b22d03615a80_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:e86b8dffe071e2f753cc22e23fc915b6b40377058239713624690a558bd26f9a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:e86b8dffe071e2f753cc22e23fc915b6b40377058239713624690a558bd26f9a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:e86b8dffe071e2f753cc22e23fc915b6b40377058239713624690a558bd26f9a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3e55c715a6fbefc517fb6eae06f87102b83fae8fe1ad9d96d5d04e38a02d66a4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3e55c715a6fbefc517fb6eae06f87102b83fae8fe1ad9d96d5d04e38a02d66a4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3e55c715a6fbefc517fb6eae06f87102b83fae8fe1ad9d96d5d04e38a02d66a4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:85017f2a631cfe3f97cf7e2694263a38fa8109de3715294deb7e121e4ab5876a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:85017f2a631cfe3f97cf7e2694263a38fa8109de3715294deb7e121e4ab5876a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:85017f2a631cfe3f97cf7e2694263a38fa8109de3715294deb7e121e4ab5876a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:94c8ae1dee20291dabc8cecc118715ff70e2a53b07a68941c4cc4f6b7cbbbb1c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:94c8ae1dee20291dabc8cecc118715ff70e2a53b07a68941c4cc4f6b7cbbbb1c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:94c8ae1dee20291dabc8cecc118715ff70e2a53b07a68941c4cc4f6b7cbbbb1c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c7279fa6b42fa9d28899b40f792348ac9556498d7234390e8e670bb08f0ebbbb_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c7279fa6b42fa9d28899b40f792348ac9556498d7234390e8e670bb08f0ebbbb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c7279fa6b42fa9d28899b40f792348ac9556498d7234390e8e670bb08f0ebbbb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:3308be644c1141b2fba332c54010895e6a5fc89380a82b6efde7eba60a9fe3ff_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:3308be644c1141b2fba332c54010895e6a5fc89380a82b6efde7eba60a9fe3ff_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:3308be644c1141b2fba332c54010895e6a5fc89380a82b6efde7eba60a9fe3ff_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:41fbd90510f63a248acbe9297418a9b893401253142574a0ce88020a1917d803_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:41fbd90510f63a248acbe9297418a9b893401253142574a0ce88020a1917d803_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:41fbd90510f63a248acbe9297418a9b893401253142574a0ce88020a1917d803_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:93ed837d6007af5eeb9ca82e602224152371c24e0319c101f527289c1bbb681f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:93ed837d6007af5eeb9ca82e602224152371c24e0319c101f527289c1bbb681f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:93ed837d6007af5eeb9ca82e602224152371c24e0319c101f527289c1bbb681f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:aef66c166327b5f36e4bc582a0e66b71959ba5de42cb5ed8e90a59918bd4c333_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:aef66c166327b5f36e4bc582a0e66b71959ba5de42cb5ed8e90a59918bd4c333_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:aef66c166327b5f36e4bc582a0e66b71959ba5de42cb5ed8e90a59918bd4c333_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:03275f8d2facfb8a8b9c07155f360bda87dc3af926773cbed48f7d365ec27230_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:03275f8d2facfb8a8b9c07155f360bda87dc3af926773cbed48f7d365ec27230_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:03275f8d2facfb8a8b9c07155f360bda87dc3af926773cbed48f7d365ec27230_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:222d1bddfbcb6216deb3c5f5c1aeded914971bc22eab2c239556428ac06fcbca_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:222d1bddfbcb6216deb3c5f5c1aeded914971bc22eab2c239556428ac06fcbca_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:222d1bddfbcb6216deb3c5f5c1aeded914971bc22eab2c239556428ac06fcbca_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:79ebee557f78d1add6c4c1e2e7fd15ce60fda4f65041531ab08938cfd8944daf_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:79ebee557f78d1add6c4c1e2e7fd15ce60fda4f65041531ab08938cfd8944daf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:79ebee557f78d1add6c4c1e2e7fd15ce60fda4f65041531ab08938cfd8944daf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ff0f47fb3e958723316472ace7c4a72f1c227c6d8153dfa78ca79e23340a8c06_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ff0f47fb3e958723316472ace7c4a72f1c227c6d8153dfa78ca79e23340a8c06_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ff0f47fb3e958723316472ace7c4a72f1c227c6d8153dfa78ca79e23340a8c06_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4bc9df05bfe5ae9a9116e8f72615430c2d6c4867a8ad91d38985e1bc302cd80a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4bc9df05bfe5ae9a9116e8f72615430c2d6c4867a8ad91d38985e1bc302cd80a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4bc9df05bfe5ae9a9116e8f72615430c2d6c4867a8ad91d38985e1bc302cd80a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:8e7ef7f1efb549b8ab1dac339791f83547414a236b172109cd30c904b1473a54_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:8e7ef7f1efb549b8ab1dac339791f83547414a236b172109cd30c904b1473a54_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:8e7ef7f1efb549b8ab1dac339791f83547414a236b172109cd30c904b1473a54_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb84041ea587478609a81e7c1b6abf670639f60a774a7ab251d542e651c7656b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb84041ea587478609a81e7c1b6abf670639f60a774a7ab251d542e651c7656b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb84041ea587478609a81e7c1b6abf670639f60a774a7ab251d542e651c7656b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:463a2fab3c70eae99121cfc80c80027ca13c8828d5a1e3ac2b1f1de9c40badca_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:463a2fab3c70eae99121cfc80c80027ca13c8828d5a1e3ac2b1f1de9c40badca_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:463a2fab3c70eae99121cfc80c80027ca13c8828d5a1e3ac2b1f1de9c40badca_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b4690ecace753cadab32d74668df5e756d11b8da467bbbae933526c81ac81f34_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b4690ecace753cadab32d74668df5e756d11b8da467bbbae933526c81ac81f34_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b4690ecace753cadab32d74668df5e756d11b8da467bbbae933526c81ac81f34_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ee55912d267ab7c311d4101595ccaad47e784817770c005bf9f5477a89d0d55d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ee55912d267ab7c311d4101595ccaad47e784817770c005bf9f5477a89d0d55d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ee55912d267ab7c311d4101595ccaad47e784817770c005bf9f5477a89d0d55d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b5258b2a5e08e569c470f773da7f74c633aaff7a9926a10b06760f9787671437_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b5258b2a5e08e569c470f773da7f74c633aaff7a9926a10b06760f9787671437_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b5258b2a5e08e569c470f773da7f74c633aaff7a9926a10b06760f9787671437_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bb3ab2a93c349706bf0dff12a6b03064f6a430981ed20b7aa9699d43c42448d9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bb3ab2a93c349706bf0dff12a6b03064f6a430981ed20b7aa9699d43c42448d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bb3ab2a93c349706bf0dff12a6b03064f6a430981ed20b7aa9699d43c42448d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bdd4c3ab9653b334f47fa28403c4d128bd326a5b146ae1f557c0d1f06507afe8_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bdd4c3ab9653b334f47fa28403c4d128bd326a5b146ae1f557c0d1f06507afe8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bdd4c3ab9653b334f47fa28403c4d128bd326a5b146ae1f557c0d1f06507afe8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:08c844ef4eca84bcf942c71ed9f38dfc14e6aec2aca5b59ea2467884bb0f6f84_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:08c844ef4eca84bcf942c71ed9f38dfc14e6aec2aca5b59ea2467884bb0f6f84_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:08c844ef4eca84bcf942c71ed9f38dfc14e6aec2aca5b59ea2467884bb0f6f84_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:eed5fe568e1dd38b1b505ea55b0eaa0790d31b786dca53126e5bb1c14d8d9dd7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:eed5fe568e1dd38b1b505ea55b0eaa0790d31b786dca53126e5bb1c14d8d9dd7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:eed5fe568e1dd38b1b505ea55b0eaa0790d31b786dca53126e5bb1c14d8d9dd7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f3fc38775494bc8fe1ee169d7e64dba1c45b568ca113533958ae7069ca6860f5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f3fc38775494bc8fe1ee169d7e64dba1c45b568ca113533958ae7069ca6860f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f3fc38775494bc8fe1ee169d7e64dba1c45b568ca113533958ae7069ca6860f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1c78dba08c0f0e82fc69879b071830c9c708c34797b61c08f022dbb52da16f26_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1c78dba08c0f0e82fc69879b071830c9c708c34797b61c08f022dbb52da16f26_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1c78dba08c0f0e82fc69879b071830c9c708c34797b61c08f022dbb52da16f26_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1f16a4f225c1cee7fbe62adf842acd4bf32837fb7afb349495db3fe20cd29eee_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1f16a4f225c1cee7fbe62adf842acd4bf32837fb7afb349495db3fe20cd29eee_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1f16a4f225c1cee7fbe62adf842acd4bf32837fb7afb349495db3fe20cd29eee_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:49474d2b155e1d4ba1348057782fa1aa2b9ba8f3445fb676906e77cca0819c74_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:49474d2b155e1d4ba1348057782fa1aa2b9ba8f3445fb676906e77cca0819c74_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:49474d2b155e1d4ba1348057782fa1aa2b9ba8f3445fb676906e77cca0819c74_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:32d7b17e180b15303e3d8c24c26d57f696f4919b1f52db41f75496f50313f827_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:32d7b17e180b15303e3d8c24c26d57f696f4919b1f52db41f75496f50313f827_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:32d7b17e180b15303e3d8c24c26d57f696f4919b1f52db41f75496f50313f827_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7873b2ead186c67c7b2a70e9e9b3fd541be084178183f72ed2d17941e7bc6563_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7873b2ead186c67c7b2a70e9e9b3fd541be084178183f72ed2d17941e7bc6563_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7873b2ead186c67c7b2a70e9e9b3fd541be084178183f72ed2d17941e7bc6563_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:aaeb86a52d1566aa0fa1f1bf4015b523d408df6f29de713e341827ee8f7e03dc_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:aaeb86a52d1566aa0fa1f1bf4015b523d408df6f29de713e341827ee8f7e03dc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:aaeb86a52d1566aa0fa1f1bf4015b523d408df6f29de713e341827ee8f7e03dc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:5b921253da6415ddd642f609bdfd853312670009a0b872be4177ef6b7dfbf806_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:5b921253da6415ddd642f609bdfd853312670009a0b872be4177ef6b7dfbf806_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:5b921253da6415ddd642f609bdfd853312670009a0b872be4177ef6b7dfbf806_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:9badc32a1c716aa2b6e9fe17650e056760d0faa09473f28bad9467cf2ee959f5_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:9badc32a1c716aa2b6e9fe17650e056760d0faa09473f28bad9467cf2ee959f5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:9badc32a1c716aa2b6e9fe17650e056760d0faa09473f28bad9467cf2ee959f5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:ce27bcfb5039720f2eaabb27f03a56570ed625c57918ae8bbbe4a6c690db60d8_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:ce27bcfb5039720f2eaabb27f03a56570ed625c57918ae8bbbe4a6c690db60d8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:ce27bcfb5039720f2eaabb27f03a56570ed625c57918ae8bbbe4a6c690db60d8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:d87a69baa2a829dfb7e873f1e16b31a06a4f16fc6244223a4f039c5b178da636_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:d87a69baa2a829dfb7e873f1e16b31a06a4f16fc6244223a4f039c5b178da636_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:d87a69baa2a829dfb7e873f1e16b31a06a4f16fc6244223a4f039c5b178da636_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:56b4a7380e482f5e3fb10e35c71a1b0605b651a4c8800242dec5f1281b08a38b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:56b4a7380e482f5e3fb10e35c71a1b0605b651a4c8800242dec5f1281b08a38b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:56b4a7380e482f5e3fb10e35c71a1b0605b651a4c8800242dec5f1281b08a38b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f2c5fa540a38374d12557f71a8066117b1add90f09f9ab5006358b8ec2a320a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f2c5fa540a38374d12557f71a8066117b1add90f09f9ab5006358b8ec2a320a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f2c5fa540a38374d12557f71a8066117b1add90f09f9ab5006358b8ec2a320a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8c3b870517808dcc62446f38034ab67d4deea71d2c9cd3603213288c21416a80_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8c3b870517808dcc62446f38034ab67d4deea71d2c9cd3603213288c21416a80_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8c3b870517808dcc62446f38034ab67d4deea71d2c9cd3603213288c21416a80_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:e4205c8134c7aa9362ff080311507c6e389b82dacf4e06e10461f3fb0a5d269f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:e4205c8134c7aa9362ff080311507c6e389b82dacf4e06e10461f3fb0a5d269f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:e4205c8134c7aa9362ff080311507c6e389b82dacf4e06e10461f3fb0a5d269f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0a30460d80b62c7b697065860ddcb0348a37d561bc214d9490e772c040e788f1_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0a30460d80b62c7b697065860ddcb0348a37d561bc214d9490e772c040e788f1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0a30460d80b62c7b697065860ddcb0348a37d561bc214d9490e772c040e788f1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:716a31cfce7060cb79a691722fdb10da8831a46e2cc12e6d55cc82f1dac9c8b2_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:716a31cfce7060cb79a691722fdb10da8831a46e2cc12e6d55cc82f1dac9c8b2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:716a31cfce7060cb79a691722fdb10da8831a46e2cc12e6d55cc82f1dac9c8b2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a5d18bc400edf4ddb0207d452586f3b64401ffa16656b2fdfb154957fdde67c1_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a5d18bc400edf4ddb0207d452586f3b64401ffa16656b2fdfb154957fdde67c1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a5d18bc400edf4ddb0207d452586f3b64401ffa16656b2fdfb154957fdde67c1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fa5c6a0aa135900589ea639ad9897956ac6f721970a26127bbce4e4fc84edf3f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fa5c6a0aa135900589ea639ad9897956ac6f721970a26127bbce4e4fc84edf3f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fa5c6a0aa135900589ea639ad9897956ac6f721970a26127bbce4e4fc84edf3f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:396b0f93db6fa85619126d34a944920fb6782802caeb6bc86af05a27d5db3d47_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:396b0f93db6fa85619126d34a944920fb6782802caeb6bc86af05a27d5db3d47_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:396b0f93db6fa85619126d34a944920fb6782802caeb6bc86af05a27d5db3d47_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d7c1befcbf81ed2230fcd85cb52d4976e8942c965c81f9af169cd2fe5d05ebb_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d7c1befcbf81ed2230fcd85cb52d4976e8942c965c81f9af169cd2fe5d05ebb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d7c1befcbf81ed2230fcd85cb52d4976e8942c965c81f9af169cd2fe5d05ebb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a32bec403165b14098cafc45326a9839205bfe25b7dd2b41efc04bca401fc569_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a32bec403165b14098cafc45326a9839205bfe25b7dd2b41efc04bca401fc569_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a32bec403165b14098cafc45326a9839205bfe25b7dd2b41efc04bca401fc569_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:bbe95f1191b2aa81c68cdc4c3124ae72259c02f739593fa531f9babb62879948_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:bbe95f1191b2aa81c68cdc4c3124ae72259c02f739593fa531f9babb62879948_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:bbe95f1191b2aa81c68cdc4c3124ae72259c02f739593fa531f9babb62879948_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2b2a3da712bef30d9bd5a591dc65d7619466b67d4d45b030839d4239b0c52c9a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2b2a3da712bef30d9bd5a591dc65d7619466b67d4d45b030839d4239b0c52c9a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2b2a3da712bef30d9bd5a591dc65d7619466b67d4d45b030839d4239b0c52c9a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:abd2abaa015db574e7ac72a08975353ff708d7c31a57c4ec67198dd461560a6a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:abd2abaa015db574e7ac72a08975353ff708d7c31a57c4ec67198dd461560a6a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:abd2abaa015db574e7ac72a08975353ff708d7c31a57c4ec67198dd461560a6a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:b8e069ab6b0b27f717092182dd3c81b5ece705e655583fcd9d69bafecc3c2690_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:b8e069ab6b0b27f717092182dd3c81b5ece705e655583fcd9d69bafecc3c2690_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:b8e069ab6b0b27f717092182dd3c81b5ece705e655583fcd9d69bafecc3c2690_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c47ab7dcb3b9fdb023b27426e672c30286fc68e9372578e2121f1a9a1543b53e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c47ab7dcb3b9fdb023b27426e672c30286fc68e9372578e2121f1a9a1543b53e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c47ab7dcb3b9fdb023b27426e672c30286fc68e9372578e2121f1a9a1543b53e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:06e88884fc4818f69672be37c5cad35dbb734ba6f5fcc522dc44216f172db9b0_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:06e88884fc4818f69672be37c5cad35dbb734ba6f5fcc522dc44216f172db9b0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:06e88884fc4818f69672be37c5cad35dbb734ba6f5fcc522dc44216f172db9b0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:138af2ae85d50413a56842f9b76b3416f5effcb9c0d8fba0d056d1d3e41bc0c6_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:138af2ae85d50413a56842f9b76b3416f5effcb9c0d8fba0d056d1d3e41bc0c6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:138af2ae85d50413a56842f9b76b3416f5effcb9c0d8fba0d056d1d3e41bc0c6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:414a8a46931dc1505d21ef47a0ef75bf90fcd2e5c0c93428a852789730260e54_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:414a8a46931dc1505d21ef47a0ef75bf90fcd2e5c0c93428a852789730260e54_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:414a8a46931dc1505d21ef47a0ef75bf90fcd2e5c0c93428a852789730260e54_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1b3cbf6fd6751f31215f6ab3b15b6d97a5cb0be42aaa48cbf4cb788bac7b7c43_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1b3cbf6fd6751f31215f6ab3b15b6d97a5cb0be42aaa48cbf4cb788bac7b7c43_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1b3cbf6fd6751f31215f6ab3b15b6d97a5cb0be42aaa48cbf4cb788bac7b7c43_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:c71f53b45a976d599b5633bee8fa979fcece81f0c422f4bf65b5293ef4c5cba7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:c71f53b45a976d599b5633bee8fa979fcece81f0c422f4bf65b5293ef4c5cba7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:c71f53b45a976d599b5633bee8fa979fcece81f0c422f4bf65b5293ef4c5cba7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:fa4f56861c26d2885c5ce571d0277a1a9fa527562a31084439a436a745b07dce_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:fa4f56861c26d2885c5ce571d0277a1a9fa527562a31084439a436a745b07dce_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:fa4f56861c26d2885c5ce571d0277a1a9fa527562a31084439a436a745b07dce_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:2c94df4cd32b010ab7d37189f82d7f96e680a555bc111a92cf2afe7d623f769d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:565587a196a83dc02ff22150f621205580ada0c9a612b5ae7f81f7a0cd840df2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:86b1946b0d17f8a8362da0c4a92de579de62fb8ebbf663460d004ffc3bf37b18_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f18bc8f41b9a12bee6914be1bc0c0191ed6c6b011b72709e39375e2cfac85577_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4957fc95a32e9e58e7574bb054755b0e939f69c49a00d500bd99dd342ec2108c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a9db266180d686a86fbdec53aa1fb5806fe6308121017dfcb61f064efff275ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:ac7c733a1d501bac474d98900181e8822bdee6cb6b84148850c6eb9e1c4562d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:adcf2604fe70820c1e26fc96914d6291072d1df557e635e9346e20742aff893b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:0d5237572f55e577b134285cb4b9780995693f78b9ef72793644bdcaef395591_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:470c1e99ea40d4b49f8fb2de6b60632aa799e28ed39ddc44ec0c70914041069f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:9dd1451787189cf9448b978b1595e21ff5d10cdf4390386c7711ec3b10c90b54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b5edbfb87a64af390d3c66e5f9d6bf47cfd3aaf120ceba18dcb7739f8d748514_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:46c20bae85f471cb842c770fbfe5754571abf33f269b1b33a4101aa8338159d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:abca6b24e30139fea6a4c8e366afee6f3fc692d403e6ac4abfd7f12b8112f079_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c37d9b5fb29ccd67c1188f8e96ecca8da7b4ed7dbbb5bd5cdb75ca927ff9f0b3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cd93e063731eca0e0a81af9bebf49787dfd37548c9c454e7ccd22353ef7ec27c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:1df9e36c7afa85458daa6512bbd91b370d60165d348a49c2dfecc716e787c926_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2fd436736db0a34557db5ddf1eff5a51cb872e5bd1fabda461cc5f531e57a213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50456d037a3e6238cd4f047d7a4c229987a9b4faa2d2de28818c3b4229fc59a8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8a058e9269050e05ff5df9bbf6c92740c1ebd081c9dd8071e56178763bbdd2c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:66553dcdeb9b568e7712f2888d3e7312b475e06d0ec86dad3cbe27ab0e3538ab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:8b77f098ad594c1ee48495ec4a0be0eea721c2940bf293e7b4a2f66fbe4a990e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:b79ca32b7852162f42f4649cc00babda1228e074d5c2ee48f9748df9f9aff326_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:d79774c1ad2355b71d68b76653781a13b476949fe5c19f047ca1f6d0ee3dab80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0a6b23cf1028b858b61334e3d4bf504a7895517373d28bce10c94fb3622a8edf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:483f733cdc78157f9e1c07c221b04dbe56dea287e5f1df2c71ac7fa9d4add7a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:75033faed2096248c6cbac42d1b4be9d35fd18d08a3a48ed12b7feca131a3d3e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d64eb22891afd4b92c9d7e889c3d950895c99bf2916c786f61feef6d58f6860f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:828073b9004ecc533e43897ddd0fb845feeba262c48832cdd3083fa2822229e7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a78e8078414d4b8e9496d7f1986a6ac6a9a648b5e561415b563bc1827d870ffe_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:bcd4821d104293600d92ec3efb0967baa2e396f8a192e6b70918a5d0f5fa0272_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ee1e0eb1be6a39cfb2e6a7a3597f3ab4d3ce99c837b0a7f7b85d3fa8fa88a040_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:3c7242b0b822a2aadffd9906478f01608b538f673900163a60fcfa086d375906_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:6df1c2bf8515d1af6afdf92ce3b2eee4505b0adede1d4f9de42a461c294c3af7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:2ce01e19a15a61c01b73284263ccbb0f58f8f08dc8322c61ab3ce99af6436b19_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:7329a64e3ad7c0661c610ba516a1f02bd0f988dbd0ac552d7c60f90a2bafd5e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:78ac87a45b3ecd7f7f11af6aaf9f0e6b043c4e1b9046a3e8486a70db2d5f63ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc11528e117a3437e92608eb9c4ece51ecab1851ef976365e11c3a48cba04d4e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f0caad7678dc21d891d18b0ce27e5b08e103f4e1196b8f0bd09dfd5f3aefafd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0c909d66cbf969cbe11968a07bc45b88ceaf48318eda1383078eae246555c3af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:69be0035bd4d768e9cc677b22ee92987edbc82864153836c52aee7d172c7db25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:714de7953e67ca5939f7f29b6646f808411b6aa19c67bb71c83bfde43ec6a135_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e403974b7d6c6cd723f5e743acca6f69d9827ee10112b1104e2b41c6ebcf2840_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:43e8b775d57b784cda9d69d68d6035e28e2459c3d29b8ce1a518c80aff640d70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5d2f312f0a4fd8db4299d3c213d8bfa9281ec7d5373b96490d08cb539b7eff9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:6a47fe76b8434cdc85523de45f6d224f081e3faf8d3a5cb25350c01e8ec9d1d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f9790d3b627750498a64c219eaf80fd45687f06de957d61447cd7ce6f407d579_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1afa425a522b662e832d1aabef58887bdd7c0a7fec00a2fc2dbd733ce49e3d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9670c21a8590d404178fc4eeaabef6a92fa6547257dd0f8f262eba896ead289f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:bcdfcc44aa3a4e76a8f370e653c87501146b39fbfb1682875e1378b26377571a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:fb6b0d958637a1b1293654f6fb771e375eba628f49d069b6b23a8655ee822207_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:232d37bdd66d0a677a72df50998deada932096a2cf4850c0101837c47967dcaa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:384add612089ea21ef5a1ea14615f26663f57b23a74c1909165676b1fcb320a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8566d93798ea66d637eab1872a29f29753f5779785e0c9c63c9ec1ddbbbfb231_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:c66f2c708f32dda47f1f7cc9a1ea7dc97bc589265df73e589df2fe6693c7e09d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0067b843e3534040ef7620715c2f86bb141882cc32df577438aaa321f5141596_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:077318abc98d9cb1cf5e3888f10542895758badf63b7d1857e90d8fb260e10b8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b47b354cdd0b1046cc2ca7195520fe9929d25a258cacd4ddbda0394f030cf0ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:d28bcbdb922e937509f26720ffbbce9cc9df5e2a2cd2f7d5ce4f26ffdc235b61_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:23bd9724dd89ad3b955d02ee7c181ed2323dc517f62642d37171e84f7584c796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:3f1915177c59c6d5d1956df6208425c3595bb5fb6911cb9b4ffafaf84f6617fa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:c1b4b52f442b0e953bb147f91e66b6f8c9341d7517394bce17b785fd5711624b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbbcc6e31faaa1ef83e15354f0be0ed2c8f078e6ffed2eb4456bdbab1704b480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:74795f21968adbcaeeaae9e6a8b072d80749cb8bb38e93161f3b0e7badf2eb15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:d9800e6b0161cd0517644746a5aa3381da7ef489405103d47e8cbb23cfcdb64c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:64beb43b5d803f1c72e6bf3e93cb080510cef99d97ae4ba97c1b2ed5373a3b9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:90c1b58b7b81275f3e21c2b434927c09d35850058d155faa640c4887c29a2ce0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:1379072258e060afea437e8e868ef778261f9200e33ac50a71cee158f1966e04_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:54cdbf92d06b09fa96db2ddc700943bc06e350b04b11ce6bb2efd2d01be69724_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b9db0faf0afd5c15574a634b7471267f8a91e1d7a75d02f757a42f527c0daaeb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:cf5adcbc1c3723265dbd4bd5ca32068fdec7d646e1f29cf89d1dd421174b1e61_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1da397c213c1aabee4f18456a10bc135248c4c19a46238fdbf7125ad099c6bed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:434c1f8becea09b3c603c7add8f6364e7407b6938fd2075cbc54bf759197567f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:6c2483950c50e5e6b7301cb63dae09e7aa2fbc2289375a14338b3f4bb3850957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0805130b18b579ff8aff2adc253432a21c24b1bce49da0fef56009e538c0cc8e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:22dac221d0a23556fe7f38b773a3ebb68725a0c1533baf0c940984fe3fd6de69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d023969beb12068dd65f468b87c20911a657733001caf3a7e052b44889676fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9b59421d9efba7c9ed2d1e226f2a60e36f953865dc3ecfc7a1754170b629653e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:59e476792f09ae69ceb0e4d40120ba6366d141dbbd009ffeb0d592afd27b6edd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:962daa988f75b92b553df53e771061206a8366b466bdb3af4a51007825846326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e168693e564b59ca886bd8c263b8e909691dfccdbde3087287c2489ce1e0573a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f18239411b6923cdda7a734a128448837eaf66661999b756178f8471f838f4e1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:06011801321cc34664abc8ed7ade2cf2e1ac96c0753966850e151cab815d61f8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:940697a45ac27b5d78042e8b65edd9b1a85ffba4c79efc2fdd722c92f9c77229_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:eab89e17049e0934a063324cfbc1dcb0c412ef7d9c80fcab35b9c2c9fbeab900_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4d1d53fcf2bbb9273a5a1711f5f1f6b76dedb89a50bff6c2e78fff2b9b91347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:87436f44eeb0025b95161692eecca9a368d966dadf2a45ec1c4732ff57127b6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:afc5b3f42b796f5993c25272567fda748e5baf98d17d0bef25edee8bbe92287b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c1ebd5f8cbc416b320e898a4cc49ad9b0ad4adb2dabc126210819e13f573cc9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ec2baac60b28249a0e5b0697abdb0e94b20571a344fd3dcc225c8c17fff2d1e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:17f2eb80baeccc29ffb82d2da9bb0ed485fbab02def7d9cd436e44544b8d1b3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:84d5473750a2292d7d5acaad3e02a4febd81adf9eab9d92126c9abcdebc535a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:9a7eabe2ee2b28e0121355ef1a9f5632fe97820b6c7f772a6cfdb7e595ca9fd1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:db7f4278a3c8f8d959c25ff947164b1932515afd47533b867517568d9c37c08d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5e59cd9305ae7cee8192800f6c58501ea58ab8878ce335a16ad2e2f4ef39198e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:74eda243b616e1eb074fa91121315d69c0c27a20155c3988dfd2a875e3267511_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bc9b3404f83830558f0173c9631252fd5c3ad64eb1e50c3970504c38a9676f57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7a9e7c2cc70f1539130cb7be4fec0aa2e575ac02fb76f19fe8c1f9c28688bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3a3c1715f3c6f0f770ac9e7f3ae798a72cd0f76acd78b6e6edfe313eb6166302_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4e7f03c301e6642913fe4d5c5d50856597401c04f8fe7233d64dbcd83db1fda0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9c8cd5266a91bbc3f1959ddb336447bce41d8bdbb3e8822991c1144677eccc27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:77b0afcd82f34e5dc2d953129d3a506425ad61b7366c12dc4f18b83dd8b41f81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:9c188f543cfb5ba855f78e7c3cb47574c9a455bfe39eda5cb56c776b702f55a9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c11e34afa310b5486e5808ec20bd1961bd787722e73751f503d215c41486f565_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:48e4ef50e863ce50a53b98cd15f9ffb5d470737458e5671a88a256117961f927_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8af50941ea73163e9ed77af1f502645340ffe54b7a0d26a67f09ec0b208a03f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:da744e1b9c83b3e975d9f01df280bf7b2f0e133ca1640efb9b41fd7009728394_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e0d986c7d8c7482c972852f2133073968caf42be5eb3edf8f42e97c2fa56f130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:45b531f3efacc195ff0d0b2d5e5171f06ddd75a4e026e531b96c709211efd67b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6db2aef1b0a8bf3146cf0f7d89a5d738413b9debfad8eb9f313635545270c94f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:75f9ca90baa675997cbd5953c14ded1c23eb139cd151ac27cb00b22d03615a80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:e86b8dffe071e2f753cc22e23fc915b6b40377058239713624690a558bd26f9a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3e55c715a6fbefc517fb6eae06f87102b83fae8fe1ad9d96d5d04e38a02d66a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:85017f2a631cfe3f97cf7e2694263a38fa8109de3715294deb7e121e4ab5876a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:94c8ae1dee20291dabc8cecc118715ff70e2a53b07a68941c4cc4f6b7cbbbb1c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c7279fa6b42fa9d28899b40f792348ac9556498d7234390e8e670bb08f0ebbbb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:3308be644c1141b2fba332c54010895e6a5fc89380a82b6efde7eba60a9fe3ff_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:41fbd90510f63a248acbe9297418a9b893401253142574a0ce88020a1917d803_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:93ed837d6007af5eeb9ca82e602224152371c24e0319c101f527289c1bbb681f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:aef66c166327b5f36e4bc582a0e66b71959ba5de42cb5ed8e90a59918bd4c333_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:03275f8d2facfb8a8b9c07155f360bda87dc3af926773cbed48f7d365ec27230_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:222d1bddfbcb6216deb3c5f5c1aeded914971bc22eab2c239556428ac06fcbca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:79ebee557f78d1add6c4c1e2e7fd15ce60fda4f65041531ab08938cfd8944daf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ff0f47fb3e958723316472ace7c4a72f1c227c6d8153dfa78ca79e23340a8c06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4bc9df05bfe5ae9a9116e8f72615430c2d6c4867a8ad91d38985e1bc302cd80a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:8e7ef7f1efb549b8ab1dac339791f83547414a236b172109cd30c904b1473a54_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb84041ea587478609a81e7c1b6abf670639f60a774a7ab251d542e651c7656b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:463a2fab3c70eae99121cfc80c80027ca13c8828d5a1e3ac2b1f1de9c40badca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b4690ecace753cadab32d74668df5e756d11b8da467bbbae933526c81ac81f34_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ee55912d267ab7c311d4101595ccaad47e784817770c005bf9f5477a89d0d55d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b5258b2a5e08e569c470f773da7f74c633aaff7a9926a10b06760f9787671437_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bb3ab2a93c349706bf0dff12a6b03064f6a430981ed20b7aa9699d43c42448d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bdd4c3ab9653b334f47fa28403c4d128bd326a5b146ae1f557c0d1f06507afe8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:08c844ef4eca84bcf942c71ed9f38dfc14e6aec2aca5b59ea2467884bb0f6f84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:eed5fe568e1dd38b1b505ea55b0eaa0790d31b786dca53126e5bb1c14d8d9dd7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f3fc38775494bc8fe1ee169d7e64dba1c45b568ca113533958ae7069ca6860f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1c78dba08c0f0e82fc69879b071830c9c708c34797b61c08f022dbb52da16f26_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1f16a4f225c1cee7fbe62adf842acd4bf32837fb7afb349495db3fe20cd29eee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:49474d2b155e1d4ba1348057782fa1aa2b9ba8f3445fb676906e77cca0819c74_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:32d7b17e180b15303e3d8c24c26d57f696f4919b1f52db41f75496f50313f827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7873b2ead186c67c7b2a70e9e9b3fd541be084178183f72ed2d17941e7bc6563_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:aaeb86a52d1566aa0fa1f1bf4015b523d408df6f29de713e341827ee8f7e03dc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:5b921253da6415ddd642f609bdfd853312670009a0b872be4177ef6b7dfbf806_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:9badc32a1c716aa2b6e9fe17650e056760d0faa09473f28bad9467cf2ee959f5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:ce27bcfb5039720f2eaabb27f03a56570ed625c57918ae8bbbe4a6c690db60d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:d87a69baa2a829dfb7e873f1e16b31a06a4f16fc6244223a4f039c5b178da636_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:56b4a7380e482f5e3fb10e35c71a1b0605b651a4c8800242dec5f1281b08a38b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f2c5fa540a38374d12557f71a8066117b1add90f09f9ab5006358b8ec2a320a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8c3b870517808dcc62446f38034ab67d4deea71d2c9cd3603213288c21416a80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:e4205c8134c7aa9362ff080311507c6e389b82dacf4e06e10461f3fb0a5d269f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0a30460d80b62c7b697065860ddcb0348a37d561bc214d9490e772c040e788f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:716a31cfce7060cb79a691722fdb10da8831a46e2cc12e6d55cc82f1dac9c8b2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a5d18bc400edf4ddb0207d452586f3b64401ffa16656b2fdfb154957fdde67c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fa5c6a0aa135900589ea639ad9897956ac6f721970a26127bbce4e4fc84edf3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:396b0f93db6fa85619126d34a944920fb6782802caeb6bc86af05a27d5db3d47_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d7c1befcbf81ed2230fcd85cb52d4976e8942c965c81f9af169cd2fe5d05ebb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a32bec403165b14098cafc45326a9839205bfe25b7dd2b41efc04bca401fc569_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:bbe95f1191b2aa81c68cdc4c3124ae72259c02f739593fa531f9babb62879948_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2b2a3da712bef30d9bd5a591dc65d7619466b67d4d45b030839d4239b0c52c9a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:abd2abaa015db574e7ac72a08975353ff708d7c31a57c4ec67198dd461560a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:b8e069ab6b0b27f717092182dd3c81b5ece705e655583fcd9d69bafecc3c2690_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c47ab7dcb3b9fdb023b27426e672c30286fc68e9372578e2121f1a9a1543b53e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:06e88884fc4818f69672be37c5cad35dbb734ba6f5fcc522dc44216f172db9b0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:138af2ae85d50413a56842f9b76b3416f5effcb9c0d8fba0d056d1d3e41bc0c6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:414a8a46931dc1505d21ef47a0ef75bf90fcd2e5c0c93428a852789730260e54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1b3cbf6fd6751f31215f6ab3b15b6d97a5cb0be42aaa48cbf4cb788bac7b7c43_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:c71f53b45a976d599b5633bee8fa979fcece81f0c422f4bf65b5293ef4c5cba7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:fa4f56861c26d2885c5ce571d0277a1a9fa527562a31084439a436a745b07dce_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:15a7e0076980f322a7272c25a00f0bf6ce6fdb31e34f687318844f90a9cc8f79_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:560dca12fdb11f4705c523bf35f13cf4a13bb61ebb6aa67d6f6ee888803089a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9449c57185bc815790209a3b6650386563c2bed58eb957030a0bf4a8f53ecd35_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:2c94df4cd32b010ab7d37189f82d7f96e680a555bc111a92cf2afe7d623f769d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:565587a196a83dc02ff22150f621205580ada0c9a612b5ae7f81f7a0cd840df2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:86b1946b0d17f8a8362da0c4a92de579de62fb8ebbf663460d004ffc3bf37b18_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f18bc8f41b9a12bee6914be1bc0c0191ed6c6b011b72709e39375e2cfac85577_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4957fc95a32e9e58e7574bb054755b0e939f69c49a00d500bd99dd342ec2108c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a9db266180d686a86fbdec53aa1fb5806fe6308121017dfcb61f064efff275ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:ac7c733a1d501bac474d98900181e8822bdee6cb6b84148850c6eb9e1c4562d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:adcf2604fe70820c1e26fc96914d6291072d1df557e635e9346e20742aff893b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:0d5237572f55e577b134285cb4b9780995693f78b9ef72793644bdcaef395591_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:470c1e99ea40d4b49f8fb2de6b60632aa799e28ed39ddc44ec0c70914041069f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:9dd1451787189cf9448b978b1595e21ff5d10cdf4390386c7711ec3b10c90b54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b5edbfb87a64af390d3c66e5f9d6bf47cfd3aaf120ceba18dcb7739f8d748514_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:46c20bae85f471cb842c770fbfe5754571abf33f269b1b33a4101aa8338159d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:abca6b24e30139fea6a4c8e366afee6f3fc692d403e6ac4abfd7f12b8112f079_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c37d9b5fb29ccd67c1188f8e96ecca8da7b4ed7dbbb5bd5cdb75ca927ff9f0b3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cd93e063731eca0e0a81af9bebf49787dfd37548c9c454e7ccd22353ef7ec27c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:1df9e36c7afa85458daa6512bbd91b370d60165d348a49c2dfecc716e787c926_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2fd436736db0a34557db5ddf1eff5a51cb872e5bd1fabda461cc5f531e57a213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50456d037a3e6238cd4f047d7a4c229987a9b4faa2d2de28818c3b4229fc59a8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8a058e9269050e05ff5df9bbf6c92740c1ebd081c9dd8071e56178763bbdd2c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:66553dcdeb9b568e7712f2888d3e7312b475e06d0ec86dad3cbe27ab0e3538ab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:8b77f098ad594c1ee48495ec4a0be0eea721c2940bf293e7b4a2f66fbe4a990e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:b79ca32b7852162f42f4649cc00babda1228e074d5c2ee48f9748df9f9aff326_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:d79774c1ad2355b71d68b76653781a13b476949fe5c19f047ca1f6d0ee3dab80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0a6b23cf1028b858b61334e3d4bf504a7895517373d28bce10c94fb3622a8edf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:483f733cdc78157f9e1c07c221b04dbe56dea287e5f1df2c71ac7fa9d4add7a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:75033faed2096248c6cbac42d1b4be9d35fd18d08a3a48ed12b7feca131a3d3e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d64eb22891afd4b92c9d7e889c3d950895c99bf2916c786f61feef6d58f6860f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:828073b9004ecc533e43897ddd0fb845feeba262c48832cdd3083fa2822229e7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a78e8078414d4b8e9496d7f1986a6ac6a9a648b5e561415b563bc1827d870ffe_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:bcd4821d104293600d92ec3efb0967baa2e396f8a192e6b70918a5d0f5fa0272_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ee1e0eb1be6a39cfb2e6a7a3597f3ab4d3ce99c837b0a7f7b85d3fa8fa88a040_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:3c7242b0b822a2aadffd9906478f01608b538f673900163a60fcfa086d375906_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:6df1c2bf8515d1af6afdf92ce3b2eee4505b0adede1d4f9de42a461c294c3af7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:2ce01e19a15a61c01b73284263ccbb0f58f8f08dc8322c61ab3ce99af6436b19_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:7329a64e3ad7c0661c610ba516a1f02bd0f988dbd0ac552d7c60f90a2bafd5e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:78ac87a45b3ecd7f7f11af6aaf9f0e6b043c4e1b9046a3e8486a70db2d5f63ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc11528e117a3437e92608eb9c4ece51ecab1851ef976365e11c3a48cba04d4e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f0caad7678dc21d891d18b0ce27e5b08e103f4e1196b8f0bd09dfd5f3aefafd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0c909d66cbf969cbe11968a07bc45b88ceaf48318eda1383078eae246555c3af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:69be0035bd4d768e9cc677b22ee92987edbc82864153836c52aee7d172c7db25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:714de7953e67ca5939f7f29b6646f808411b6aa19c67bb71c83bfde43ec6a135_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e403974b7d6c6cd723f5e743acca6f69d9827ee10112b1104e2b41c6ebcf2840_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:43e8b775d57b784cda9d69d68d6035e28e2459c3d29b8ce1a518c80aff640d70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5d2f312f0a4fd8db4299d3c213d8bfa9281ec7d5373b96490d08cb539b7eff9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:6a47fe76b8434cdc85523de45f6d224f081e3faf8d3a5cb25350c01e8ec9d1d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f9790d3b627750498a64c219eaf80fd45687f06de957d61447cd7ce6f407d579_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1afa425a522b662e832d1aabef58887bdd7c0a7fec00a2fc2dbd733ce49e3d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9670c21a8590d404178fc4eeaabef6a92fa6547257dd0f8f262eba896ead289f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:bcdfcc44aa3a4e76a8f370e653c87501146b39fbfb1682875e1378b26377571a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:fb6b0d958637a1b1293654f6fb771e375eba628f49d069b6b23a8655ee822207_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:232d37bdd66d0a677a72df50998deada932096a2cf4850c0101837c47967dcaa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:384add612089ea21ef5a1ea14615f26663f57b23a74c1909165676b1fcb320a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8566d93798ea66d637eab1872a29f29753f5779785e0c9c63c9ec1ddbbbfb231_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:c66f2c708f32dda47f1f7cc9a1ea7dc97bc589265df73e589df2fe6693c7e09d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0067b843e3534040ef7620715c2f86bb141882cc32df577438aaa321f5141596_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:077318abc98d9cb1cf5e3888f10542895758badf63b7d1857e90d8fb260e10b8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b47b354cdd0b1046cc2ca7195520fe9929d25a258cacd4ddbda0394f030cf0ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:d28bcbdb922e937509f26720ffbbce9cc9df5e2a2cd2f7d5ce4f26ffdc235b61_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:23bd9724dd89ad3b955d02ee7c181ed2323dc517f62642d37171e84f7584c796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:3f1915177c59c6d5d1956df6208425c3595bb5fb6911cb9b4ffafaf84f6617fa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:c1b4b52f442b0e953bb147f91e66b6f8c9341d7517394bce17b785fd5711624b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbbcc6e31faaa1ef83e15354f0be0ed2c8f078e6ffed2eb4456bdbab1704b480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:74795f21968adbcaeeaae9e6a8b072d80749cb8bb38e93161f3b0e7badf2eb15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:d9800e6b0161cd0517644746a5aa3381da7ef489405103d47e8cbb23cfcdb64c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:64beb43b5d803f1c72e6bf3e93cb080510cef99d97ae4ba97c1b2ed5373a3b9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:90c1b58b7b81275f3e21c2b434927c09d35850058d155faa640c4887c29a2ce0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:1379072258e060afea437e8e868ef778261f9200e33ac50a71cee158f1966e04_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:54cdbf92d06b09fa96db2ddc700943bc06e350b04b11ce6bb2efd2d01be69724_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b9db0faf0afd5c15574a634b7471267f8a91e1d7a75d02f757a42f527c0daaeb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:cf5adcbc1c3723265dbd4bd5ca32068fdec7d646e1f29cf89d1dd421174b1e61_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1da397c213c1aabee4f18456a10bc135248c4c19a46238fdbf7125ad099c6bed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:434c1f8becea09b3c603c7add8f6364e7407b6938fd2075cbc54bf759197567f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:6c2483950c50e5e6b7301cb63dae09e7aa2fbc2289375a14338b3f4bb3850957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0805130b18b579ff8aff2adc253432a21c24b1bce49da0fef56009e538c0cc8e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:22dac221d0a23556fe7f38b773a3ebb68725a0c1533baf0c940984fe3fd6de69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d023969beb12068dd65f468b87c20911a657733001caf3a7e052b44889676fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9b59421d9efba7c9ed2d1e226f2a60e36f953865dc3ecfc7a1754170b629653e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:59e476792f09ae69ceb0e4d40120ba6366d141dbbd009ffeb0d592afd27b6edd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:962daa988f75b92b553df53e771061206a8366b466bdb3af4a51007825846326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e168693e564b59ca886bd8c263b8e909691dfccdbde3087287c2489ce1e0573a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f18239411b6923cdda7a734a128448837eaf66661999b756178f8471f838f4e1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:06011801321cc34664abc8ed7ade2cf2e1ac96c0753966850e151cab815d61f8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:940697a45ac27b5d78042e8b65edd9b1a85ffba4c79efc2fdd722c92f9c77229_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:eab89e17049e0934a063324cfbc1dcb0c412ef7d9c80fcab35b9c2c9fbeab900_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4d1d53fcf2bbb9273a5a1711f5f1f6b76dedb89a50bff6c2e78fff2b9b91347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:87436f44eeb0025b95161692eecca9a368d966dadf2a45ec1c4732ff57127b6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:afc5b3f42b796f5993c25272567fda748e5baf98d17d0bef25edee8bbe92287b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c1ebd5f8cbc416b320e898a4cc49ad9b0ad4adb2dabc126210819e13f573cc9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ec2baac60b28249a0e5b0697abdb0e94b20571a344fd3dcc225c8c17fff2d1e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:17f2eb80baeccc29ffb82d2da9bb0ed485fbab02def7d9cd436e44544b8d1b3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:84d5473750a2292d7d5acaad3e02a4febd81adf9eab9d92126c9abcdebc535a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:9a7eabe2ee2b28e0121355ef1a9f5632fe97820b6c7f772a6cfdb7e595ca9fd1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:db7f4278a3c8f8d959c25ff947164b1932515afd47533b867517568d9c37c08d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5e59cd9305ae7cee8192800f6c58501ea58ab8878ce335a16ad2e2f4ef39198e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:74eda243b616e1eb074fa91121315d69c0c27a20155c3988dfd2a875e3267511_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bc9b3404f83830558f0173c9631252fd5c3ad64eb1e50c3970504c38a9676f57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7a9e7c2cc70f1539130cb7be4fec0aa2e575ac02fb76f19fe8c1f9c28688bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3a3c1715f3c6f0f770ac9e7f3ae798a72cd0f76acd78b6e6edfe313eb6166302_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4e7f03c301e6642913fe4d5c5d50856597401c04f8fe7233d64dbcd83db1fda0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9c8cd5266a91bbc3f1959ddb336447bce41d8bdbb3e8822991c1144677eccc27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:77b0afcd82f34e5dc2d953129d3a506425ad61b7366c12dc4f18b83dd8b41f81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:9c188f543cfb5ba855f78e7c3cb47574c9a455bfe39eda5cb56c776b702f55a9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c11e34afa310b5486e5808ec20bd1961bd787722e73751f503d215c41486f565_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:48e4ef50e863ce50a53b98cd15f9ffb5d470737458e5671a88a256117961f927_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8af50941ea73163e9ed77af1f502645340ffe54b7a0d26a67f09ec0b208a03f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:da744e1b9c83b3e975d9f01df280bf7b2f0e133ca1640efb9b41fd7009728394_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e0d986c7d8c7482c972852f2133073968caf42be5eb3edf8f42e97c2fa56f130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:45b531f3efacc195ff0d0b2d5e5171f06ddd75a4e026e531b96c709211efd67b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6db2aef1b0a8bf3146cf0f7d89a5d738413b9debfad8eb9f313635545270c94f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:75f9ca90baa675997cbd5953c14ded1c23eb139cd151ac27cb00b22d03615a80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:e86b8dffe071e2f753cc22e23fc915b6b40377058239713624690a558bd26f9a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3e55c715a6fbefc517fb6eae06f87102b83fae8fe1ad9d96d5d04e38a02d66a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:85017f2a631cfe3f97cf7e2694263a38fa8109de3715294deb7e121e4ab5876a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:94c8ae1dee20291dabc8cecc118715ff70e2a53b07a68941c4cc4f6b7cbbbb1c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c7279fa6b42fa9d28899b40f792348ac9556498d7234390e8e670bb08f0ebbbb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:3308be644c1141b2fba332c54010895e6a5fc89380a82b6efde7eba60a9fe3ff_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:41fbd90510f63a248acbe9297418a9b893401253142574a0ce88020a1917d803_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:93ed837d6007af5eeb9ca82e602224152371c24e0319c101f527289c1bbb681f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:aef66c166327b5f36e4bc582a0e66b71959ba5de42cb5ed8e90a59918bd4c333_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:03275f8d2facfb8a8b9c07155f360bda87dc3af926773cbed48f7d365ec27230_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:222d1bddfbcb6216deb3c5f5c1aeded914971bc22eab2c239556428ac06fcbca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:79ebee557f78d1add6c4c1e2e7fd15ce60fda4f65041531ab08938cfd8944daf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ff0f47fb3e958723316472ace7c4a72f1c227c6d8153dfa78ca79e23340a8c06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4bc9df05bfe5ae9a9116e8f72615430c2d6c4867a8ad91d38985e1bc302cd80a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:8e7ef7f1efb549b8ab1dac339791f83547414a236b172109cd30c904b1473a54_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb84041ea587478609a81e7c1b6abf670639f60a774a7ab251d542e651c7656b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:463a2fab3c70eae99121cfc80c80027ca13c8828d5a1e3ac2b1f1de9c40badca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b4690ecace753cadab32d74668df5e756d11b8da467bbbae933526c81ac81f34_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ee55912d267ab7c311d4101595ccaad47e784817770c005bf9f5477a89d0d55d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b5258b2a5e08e569c470f773da7f74c633aaff7a9926a10b06760f9787671437_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bb3ab2a93c349706bf0dff12a6b03064f6a430981ed20b7aa9699d43c42448d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bdd4c3ab9653b334f47fa28403c4d128bd326a5b146ae1f557c0d1f06507afe8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:08c844ef4eca84bcf942c71ed9f38dfc14e6aec2aca5b59ea2467884bb0f6f84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:eed5fe568e1dd38b1b505ea55b0eaa0790d31b786dca53126e5bb1c14d8d9dd7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f3fc38775494bc8fe1ee169d7e64dba1c45b568ca113533958ae7069ca6860f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1c78dba08c0f0e82fc69879b071830c9c708c34797b61c08f022dbb52da16f26_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1f16a4f225c1cee7fbe62adf842acd4bf32837fb7afb349495db3fe20cd29eee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:49474d2b155e1d4ba1348057782fa1aa2b9ba8f3445fb676906e77cca0819c74_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:32d7b17e180b15303e3d8c24c26d57f696f4919b1f52db41f75496f50313f827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7873b2ead186c67c7b2a70e9e9b3fd541be084178183f72ed2d17941e7bc6563_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:aaeb86a52d1566aa0fa1f1bf4015b523d408df6f29de713e341827ee8f7e03dc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:5b921253da6415ddd642f609bdfd853312670009a0b872be4177ef6b7dfbf806_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:9badc32a1c716aa2b6e9fe17650e056760d0faa09473f28bad9467cf2ee959f5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:ce27bcfb5039720f2eaabb27f03a56570ed625c57918ae8bbbe4a6c690db60d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:d87a69baa2a829dfb7e873f1e16b31a06a4f16fc6244223a4f039c5b178da636_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:56b4a7380e482f5e3fb10e35c71a1b0605b651a4c8800242dec5f1281b08a38b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f2c5fa540a38374d12557f71a8066117b1add90f09f9ab5006358b8ec2a320a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8c3b870517808dcc62446f38034ab67d4deea71d2c9cd3603213288c21416a80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:e4205c8134c7aa9362ff080311507c6e389b82dacf4e06e10461f3fb0a5d269f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0a30460d80b62c7b697065860ddcb0348a37d561bc214d9490e772c040e788f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:716a31cfce7060cb79a691722fdb10da8831a46e2cc12e6d55cc82f1dac9c8b2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a5d18bc400edf4ddb0207d452586f3b64401ffa16656b2fdfb154957fdde67c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fa5c6a0aa135900589ea639ad9897956ac6f721970a26127bbce4e4fc84edf3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:396b0f93db6fa85619126d34a944920fb6782802caeb6bc86af05a27d5db3d47_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d7c1befcbf81ed2230fcd85cb52d4976e8942c965c81f9af169cd2fe5d05ebb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a32bec403165b14098cafc45326a9839205bfe25b7dd2b41efc04bca401fc569_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:bbe95f1191b2aa81c68cdc4c3124ae72259c02f739593fa531f9babb62879948_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2b2a3da712bef30d9bd5a591dc65d7619466b67d4d45b030839d4239b0c52c9a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:abd2abaa015db574e7ac72a08975353ff708d7c31a57c4ec67198dd461560a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:b8e069ab6b0b27f717092182dd3c81b5ece705e655583fcd9d69bafecc3c2690_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c47ab7dcb3b9fdb023b27426e672c30286fc68e9372578e2121f1a9a1543b53e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:06e88884fc4818f69672be37c5cad35dbb734ba6f5fcc522dc44216f172db9b0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:138af2ae85d50413a56842f9b76b3416f5effcb9c0d8fba0d056d1d3e41bc0c6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:414a8a46931dc1505d21ef47a0ef75bf90fcd2e5c0c93428a852789730260e54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1b3cbf6fd6751f31215f6ab3b15b6d97a5cb0be42aaa48cbf4cb788bac7b7c43_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:c71f53b45a976d599b5633bee8fa979fcece81f0c422f4bf65b5293ef4c5cba7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:fa4f56861c26d2885c5ce571d0277a1a9fa527562a31084439a436a745b07dce_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-16T07:35:18+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:15a7e0076980f322a7272c25a00f0bf6ce6fdb31e34f687318844f90a9cc8f79_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:560dca12fdb11f4705c523bf35f13cf4a13bb61ebb6aa67d6f6ee888803089a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9449c57185bc815790209a3b6650386563c2bed58eb957030a0bf4a8f53ecd35_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25195"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:2c94df4cd32b010ab7d37189f82d7f96e680a555bc111a92cf2afe7d623f769d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:565587a196a83dc02ff22150f621205580ada0c9a612b5ae7f81f7a0cd840df2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:86b1946b0d17f8a8362da0c4a92de579de62fb8ebbf663460d004ffc3bf37b18_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f18bc8f41b9a12bee6914be1bc0c0191ed6c6b011b72709e39375e2cfac85577_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4957fc95a32e9e58e7574bb054755b0e939f69c49a00d500bd99dd342ec2108c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a9db266180d686a86fbdec53aa1fb5806fe6308121017dfcb61f064efff275ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:ac7c733a1d501bac474d98900181e8822bdee6cb6b84148850c6eb9e1c4562d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:adcf2604fe70820c1e26fc96914d6291072d1df557e635e9346e20742aff893b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:0d5237572f55e577b134285cb4b9780995693f78b9ef72793644bdcaef395591_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:470c1e99ea40d4b49f8fb2de6b60632aa799e28ed39ddc44ec0c70914041069f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:9dd1451787189cf9448b978b1595e21ff5d10cdf4390386c7711ec3b10c90b54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b5edbfb87a64af390d3c66e5f9d6bf47cfd3aaf120ceba18dcb7739f8d748514_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:46c20bae85f471cb842c770fbfe5754571abf33f269b1b33a4101aa8338159d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:abca6b24e30139fea6a4c8e366afee6f3fc692d403e6ac4abfd7f12b8112f079_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c37d9b5fb29ccd67c1188f8e96ecca8da7b4ed7dbbb5bd5cdb75ca927ff9f0b3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cd93e063731eca0e0a81af9bebf49787dfd37548c9c454e7ccd22353ef7ec27c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:1df9e36c7afa85458daa6512bbd91b370d60165d348a49c2dfecc716e787c926_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2fd436736db0a34557db5ddf1eff5a51cb872e5bd1fabda461cc5f531e57a213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50456d037a3e6238cd4f047d7a4c229987a9b4faa2d2de28818c3b4229fc59a8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8a058e9269050e05ff5df9bbf6c92740c1ebd081c9dd8071e56178763bbdd2c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:66553dcdeb9b568e7712f2888d3e7312b475e06d0ec86dad3cbe27ab0e3538ab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:8b77f098ad594c1ee48495ec4a0be0eea721c2940bf293e7b4a2f66fbe4a990e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:b79ca32b7852162f42f4649cc00babda1228e074d5c2ee48f9748df9f9aff326_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:d79774c1ad2355b71d68b76653781a13b476949fe5c19f047ca1f6d0ee3dab80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0a6b23cf1028b858b61334e3d4bf504a7895517373d28bce10c94fb3622a8edf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:483f733cdc78157f9e1c07c221b04dbe56dea287e5f1df2c71ac7fa9d4add7a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:75033faed2096248c6cbac42d1b4be9d35fd18d08a3a48ed12b7feca131a3d3e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d64eb22891afd4b92c9d7e889c3d950895c99bf2916c786f61feef6d58f6860f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:828073b9004ecc533e43897ddd0fb845feeba262c48832cdd3083fa2822229e7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a78e8078414d4b8e9496d7f1986a6ac6a9a648b5e561415b563bc1827d870ffe_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:bcd4821d104293600d92ec3efb0967baa2e396f8a192e6b70918a5d0f5fa0272_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ee1e0eb1be6a39cfb2e6a7a3597f3ab4d3ce99c837b0a7f7b85d3fa8fa88a040_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:3c7242b0b822a2aadffd9906478f01608b538f673900163a60fcfa086d375906_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:6df1c2bf8515d1af6afdf92ce3b2eee4505b0adede1d4f9de42a461c294c3af7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:2ce01e19a15a61c01b73284263ccbb0f58f8f08dc8322c61ab3ce99af6436b19_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:7329a64e3ad7c0661c610ba516a1f02bd0f988dbd0ac552d7c60f90a2bafd5e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:78ac87a45b3ecd7f7f11af6aaf9f0e6b043c4e1b9046a3e8486a70db2d5f63ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc11528e117a3437e92608eb9c4ece51ecab1851ef976365e11c3a48cba04d4e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f0caad7678dc21d891d18b0ce27e5b08e103f4e1196b8f0bd09dfd5f3aefafd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0c909d66cbf969cbe11968a07bc45b88ceaf48318eda1383078eae246555c3af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:69be0035bd4d768e9cc677b22ee92987edbc82864153836c52aee7d172c7db25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:714de7953e67ca5939f7f29b6646f808411b6aa19c67bb71c83bfde43ec6a135_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e403974b7d6c6cd723f5e743acca6f69d9827ee10112b1104e2b41c6ebcf2840_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:43e8b775d57b784cda9d69d68d6035e28e2459c3d29b8ce1a518c80aff640d70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5d2f312f0a4fd8db4299d3c213d8bfa9281ec7d5373b96490d08cb539b7eff9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:6a47fe76b8434cdc85523de45f6d224f081e3faf8d3a5cb25350c01e8ec9d1d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f9790d3b627750498a64c219eaf80fd45687f06de957d61447cd7ce6f407d579_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1afa425a522b662e832d1aabef58887bdd7c0a7fec00a2fc2dbd733ce49e3d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9670c21a8590d404178fc4eeaabef6a92fa6547257dd0f8f262eba896ead289f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:bcdfcc44aa3a4e76a8f370e653c87501146b39fbfb1682875e1378b26377571a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:fb6b0d958637a1b1293654f6fb771e375eba628f49d069b6b23a8655ee822207_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:232d37bdd66d0a677a72df50998deada932096a2cf4850c0101837c47967dcaa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:384add612089ea21ef5a1ea14615f26663f57b23a74c1909165676b1fcb320a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8566d93798ea66d637eab1872a29f29753f5779785e0c9c63c9ec1ddbbbfb231_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:c66f2c708f32dda47f1f7cc9a1ea7dc97bc589265df73e589df2fe6693c7e09d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0067b843e3534040ef7620715c2f86bb141882cc32df577438aaa321f5141596_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:077318abc98d9cb1cf5e3888f10542895758badf63b7d1857e90d8fb260e10b8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b47b354cdd0b1046cc2ca7195520fe9929d25a258cacd4ddbda0394f030cf0ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:d28bcbdb922e937509f26720ffbbce9cc9df5e2a2cd2f7d5ce4f26ffdc235b61_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:23bd9724dd89ad3b955d02ee7c181ed2323dc517f62642d37171e84f7584c796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:3f1915177c59c6d5d1956df6208425c3595bb5fb6911cb9b4ffafaf84f6617fa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:c1b4b52f442b0e953bb147f91e66b6f8c9341d7517394bce17b785fd5711624b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbbcc6e31faaa1ef83e15354f0be0ed2c8f078e6ffed2eb4456bdbab1704b480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:74795f21968adbcaeeaae9e6a8b072d80749cb8bb38e93161f3b0e7badf2eb15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:d9800e6b0161cd0517644746a5aa3381da7ef489405103d47e8cbb23cfcdb64c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:64beb43b5d803f1c72e6bf3e93cb080510cef99d97ae4ba97c1b2ed5373a3b9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:90c1b58b7b81275f3e21c2b434927c09d35850058d155faa640c4887c29a2ce0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:1379072258e060afea437e8e868ef778261f9200e33ac50a71cee158f1966e04_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:54cdbf92d06b09fa96db2ddc700943bc06e350b04b11ce6bb2efd2d01be69724_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b9db0faf0afd5c15574a634b7471267f8a91e1d7a75d02f757a42f527c0daaeb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:cf5adcbc1c3723265dbd4bd5ca32068fdec7d646e1f29cf89d1dd421174b1e61_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1da397c213c1aabee4f18456a10bc135248c4c19a46238fdbf7125ad099c6bed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:434c1f8becea09b3c603c7add8f6364e7407b6938fd2075cbc54bf759197567f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:6c2483950c50e5e6b7301cb63dae09e7aa2fbc2289375a14338b3f4bb3850957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:15a7e0076980f322a7272c25a00f0bf6ce6fdb31e34f687318844f90a9cc8f79_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:560dca12fdb11f4705c523bf35f13cf4a13bb61ebb6aa67d6f6ee888803089a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9449c57185bc815790209a3b6650386563c2bed58eb957030a0bf4a8f53ecd35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0805130b18b579ff8aff2adc253432a21c24b1bce49da0fef56009e538c0cc8e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:22dac221d0a23556fe7f38b773a3ebb68725a0c1533baf0c940984fe3fd6de69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d023969beb12068dd65f468b87c20911a657733001caf3a7e052b44889676fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9b59421d9efba7c9ed2d1e226f2a60e36f953865dc3ecfc7a1754170b629653e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:59e476792f09ae69ceb0e4d40120ba6366d141dbbd009ffeb0d592afd27b6edd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:962daa988f75b92b553df53e771061206a8366b466bdb3af4a51007825846326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e168693e564b59ca886bd8c263b8e909691dfccdbde3087287c2489ce1e0573a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f18239411b6923cdda7a734a128448837eaf66661999b756178f8471f838f4e1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:06011801321cc34664abc8ed7ade2cf2e1ac96c0753966850e151cab815d61f8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:940697a45ac27b5d78042e8b65edd9b1a85ffba4c79efc2fdd722c92f9c77229_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:eab89e17049e0934a063324cfbc1dcb0c412ef7d9c80fcab35b9c2c9fbeab900_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4d1d53fcf2bbb9273a5a1711f5f1f6b76dedb89a50bff6c2e78fff2b9b91347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:87436f44eeb0025b95161692eecca9a368d966dadf2a45ec1c4732ff57127b6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:afc5b3f42b796f5993c25272567fda748e5baf98d17d0bef25edee8bbe92287b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c1ebd5f8cbc416b320e898a4cc49ad9b0ad4adb2dabc126210819e13f573cc9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ec2baac60b28249a0e5b0697abdb0e94b20571a344fd3dcc225c8c17fff2d1e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:17f2eb80baeccc29ffb82d2da9bb0ed485fbab02def7d9cd436e44544b8d1b3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:84d5473750a2292d7d5acaad3e02a4febd81adf9eab9d92126c9abcdebc535a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:9a7eabe2ee2b28e0121355ef1a9f5632fe97820b6c7f772a6cfdb7e595ca9fd1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:db7f4278a3c8f8d959c25ff947164b1932515afd47533b867517568d9c37c08d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5e59cd9305ae7cee8192800f6c58501ea58ab8878ce335a16ad2e2f4ef39198e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:74eda243b616e1eb074fa91121315d69c0c27a20155c3988dfd2a875e3267511_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bc9b3404f83830558f0173c9631252fd5c3ad64eb1e50c3970504c38a9676f57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7a9e7c2cc70f1539130cb7be4fec0aa2e575ac02fb76f19fe8c1f9c28688bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3a3c1715f3c6f0f770ac9e7f3ae798a72cd0f76acd78b6e6edfe313eb6166302_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4e7f03c301e6642913fe4d5c5d50856597401c04f8fe7233d64dbcd83db1fda0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9c8cd5266a91bbc3f1959ddb336447bce41d8bdbb3e8822991c1144677eccc27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:77b0afcd82f34e5dc2d953129d3a506425ad61b7366c12dc4f18b83dd8b41f81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:9c188f543cfb5ba855f78e7c3cb47574c9a455bfe39eda5cb56c776b702f55a9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c11e34afa310b5486e5808ec20bd1961bd787722e73751f503d215c41486f565_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:48e4ef50e863ce50a53b98cd15f9ffb5d470737458e5671a88a256117961f927_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8af50941ea73163e9ed77af1f502645340ffe54b7a0d26a67f09ec0b208a03f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:da744e1b9c83b3e975d9f01df280bf7b2f0e133ca1640efb9b41fd7009728394_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e0d986c7d8c7482c972852f2133073968caf42be5eb3edf8f42e97c2fa56f130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:45b531f3efacc195ff0d0b2d5e5171f06ddd75a4e026e531b96c709211efd67b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6db2aef1b0a8bf3146cf0f7d89a5d738413b9debfad8eb9f313635545270c94f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:75f9ca90baa675997cbd5953c14ded1c23eb139cd151ac27cb00b22d03615a80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:e86b8dffe071e2f753cc22e23fc915b6b40377058239713624690a558bd26f9a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3e55c715a6fbefc517fb6eae06f87102b83fae8fe1ad9d96d5d04e38a02d66a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:85017f2a631cfe3f97cf7e2694263a38fa8109de3715294deb7e121e4ab5876a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:94c8ae1dee20291dabc8cecc118715ff70e2a53b07a68941c4cc4f6b7cbbbb1c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c7279fa6b42fa9d28899b40f792348ac9556498d7234390e8e670bb08f0ebbbb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:3308be644c1141b2fba332c54010895e6a5fc89380a82b6efde7eba60a9fe3ff_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:41fbd90510f63a248acbe9297418a9b893401253142574a0ce88020a1917d803_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:93ed837d6007af5eeb9ca82e602224152371c24e0319c101f527289c1bbb681f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:aef66c166327b5f36e4bc582a0e66b71959ba5de42cb5ed8e90a59918bd4c333_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:03275f8d2facfb8a8b9c07155f360bda87dc3af926773cbed48f7d365ec27230_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:222d1bddfbcb6216deb3c5f5c1aeded914971bc22eab2c239556428ac06fcbca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:79ebee557f78d1add6c4c1e2e7fd15ce60fda4f65041531ab08938cfd8944daf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ff0f47fb3e958723316472ace7c4a72f1c227c6d8153dfa78ca79e23340a8c06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4bc9df05bfe5ae9a9116e8f72615430c2d6c4867a8ad91d38985e1bc302cd80a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:8e7ef7f1efb549b8ab1dac339791f83547414a236b172109cd30c904b1473a54_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb84041ea587478609a81e7c1b6abf670639f60a774a7ab251d542e651c7656b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:463a2fab3c70eae99121cfc80c80027ca13c8828d5a1e3ac2b1f1de9c40badca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b4690ecace753cadab32d74668df5e756d11b8da467bbbae933526c81ac81f34_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ee55912d267ab7c311d4101595ccaad47e784817770c005bf9f5477a89d0d55d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b5258b2a5e08e569c470f773da7f74c633aaff7a9926a10b06760f9787671437_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bb3ab2a93c349706bf0dff12a6b03064f6a430981ed20b7aa9699d43c42448d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bdd4c3ab9653b334f47fa28403c4d128bd326a5b146ae1f557c0d1f06507afe8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:08c844ef4eca84bcf942c71ed9f38dfc14e6aec2aca5b59ea2467884bb0f6f84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:eed5fe568e1dd38b1b505ea55b0eaa0790d31b786dca53126e5bb1c14d8d9dd7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f3fc38775494bc8fe1ee169d7e64dba1c45b568ca113533958ae7069ca6860f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1c78dba08c0f0e82fc69879b071830c9c708c34797b61c08f022dbb52da16f26_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1f16a4f225c1cee7fbe62adf842acd4bf32837fb7afb349495db3fe20cd29eee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:49474d2b155e1d4ba1348057782fa1aa2b9ba8f3445fb676906e77cca0819c74_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:32d7b17e180b15303e3d8c24c26d57f696f4919b1f52db41f75496f50313f827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7873b2ead186c67c7b2a70e9e9b3fd541be084178183f72ed2d17941e7bc6563_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:aaeb86a52d1566aa0fa1f1bf4015b523d408df6f29de713e341827ee8f7e03dc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:5b921253da6415ddd642f609bdfd853312670009a0b872be4177ef6b7dfbf806_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:9badc32a1c716aa2b6e9fe17650e056760d0faa09473f28bad9467cf2ee959f5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:ce27bcfb5039720f2eaabb27f03a56570ed625c57918ae8bbbe4a6c690db60d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:d87a69baa2a829dfb7e873f1e16b31a06a4f16fc6244223a4f039c5b178da636_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:56b4a7380e482f5e3fb10e35c71a1b0605b651a4c8800242dec5f1281b08a38b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f2c5fa540a38374d12557f71a8066117b1add90f09f9ab5006358b8ec2a320a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8c3b870517808dcc62446f38034ab67d4deea71d2c9cd3603213288c21416a80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:e4205c8134c7aa9362ff080311507c6e389b82dacf4e06e10461f3fb0a5d269f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0a30460d80b62c7b697065860ddcb0348a37d561bc214d9490e772c040e788f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:716a31cfce7060cb79a691722fdb10da8831a46e2cc12e6d55cc82f1dac9c8b2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a5d18bc400edf4ddb0207d452586f3b64401ffa16656b2fdfb154957fdde67c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fa5c6a0aa135900589ea639ad9897956ac6f721970a26127bbce4e4fc84edf3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:396b0f93db6fa85619126d34a944920fb6782802caeb6bc86af05a27d5db3d47_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d7c1befcbf81ed2230fcd85cb52d4976e8942c965c81f9af169cd2fe5d05ebb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a32bec403165b14098cafc45326a9839205bfe25b7dd2b41efc04bca401fc569_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:bbe95f1191b2aa81c68cdc4c3124ae72259c02f739593fa531f9babb62879948_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2b2a3da712bef30d9bd5a591dc65d7619466b67d4d45b030839d4239b0c52c9a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:abd2abaa015db574e7ac72a08975353ff708d7c31a57c4ec67198dd461560a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:b8e069ab6b0b27f717092182dd3c81b5ece705e655583fcd9d69bafecc3c2690_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c47ab7dcb3b9fdb023b27426e672c30286fc68e9372578e2121f1a9a1543b53e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:06e88884fc4818f69672be37c5cad35dbb734ba6f5fcc522dc44216f172db9b0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:138af2ae85d50413a56842f9b76b3416f5effcb9c0d8fba0d056d1d3e41bc0c6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:414a8a46931dc1505d21ef47a0ef75bf90fcd2e5c0c93428a852789730260e54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1b3cbf6fd6751f31215f6ab3b15b6d97a5cb0be42aaa48cbf4cb788bac7b7c43_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:c71f53b45a976d599b5633bee8fa979fcece81f0c422f4bf65b5293ef4c5cba7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:fa4f56861c26d2885c5ce571d0277a1a9fa527562a31084439a436a745b07dce_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:2c94df4cd32b010ab7d37189f82d7f96e680a555bc111a92cf2afe7d623f769d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:565587a196a83dc02ff22150f621205580ada0c9a612b5ae7f81f7a0cd840df2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:86b1946b0d17f8a8362da0c4a92de579de62fb8ebbf663460d004ffc3bf37b18_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f18bc8f41b9a12bee6914be1bc0c0191ed6c6b011b72709e39375e2cfac85577_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4957fc95a32e9e58e7574bb054755b0e939f69c49a00d500bd99dd342ec2108c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a9db266180d686a86fbdec53aa1fb5806fe6308121017dfcb61f064efff275ea_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:ac7c733a1d501bac474d98900181e8822bdee6cb6b84148850c6eb9e1c4562d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:adcf2604fe70820c1e26fc96914d6291072d1df557e635e9346e20742aff893b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:0d5237572f55e577b134285cb4b9780995693f78b9ef72793644bdcaef395591_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:470c1e99ea40d4b49f8fb2de6b60632aa799e28ed39ddc44ec0c70914041069f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:9dd1451787189cf9448b978b1595e21ff5d10cdf4390386c7711ec3b10c90b54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b5edbfb87a64af390d3c66e5f9d6bf47cfd3aaf120ceba18dcb7739f8d748514_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:46c20bae85f471cb842c770fbfe5754571abf33f269b1b33a4101aa8338159d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:abca6b24e30139fea6a4c8e366afee6f3fc692d403e6ac4abfd7f12b8112f079_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c37d9b5fb29ccd67c1188f8e96ecca8da7b4ed7dbbb5bd5cdb75ca927ff9f0b3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cd93e063731eca0e0a81af9bebf49787dfd37548c9c454e7ccd22353ef7ec27c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:1df9e36c7afa85458daa6512bbd91b370d60165d348a49c2dfecc716e787c926_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2fd436736db0a34557db5ddf1eff5a51cb872e5bd1fabda461cc5f531e57a213_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50456d037a3e6238cd4f047d7a4c229987a9b4faa2d2de28818c3b4229fc59a8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8a058e9269050e05ff5df9bbf6c92740c1ebd081c9dd8071e56178763bbdd2c1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:66553dcdeb9b568e7712f2888d3e7312b475e06d0ec86dad3cbe27ab0e3538ab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:8b77f098ad594c1ee48495ec4a0be0eea721c2940bf293e7b4a2f66fbe4a990e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:b79ca32b7852162f42f4649cc00babda1228e074d5c2ee48f9748df9f9aff326_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:d79774c1ad2355b71d68b76653781a13b476949fe5c19f047ca1f6d0ee3dab80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0a6b23cf1028b858b61334e3d4bf504a7895517373d28bce10c94fb3622a8edf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:483f733cdc78157f9e1c07c221b04dbe56dea287e5f1df2c71ac7fa9d4add7a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:75033faed2096248c6cbac42d1b4be9d35fd18d08a3a48ed12b7feca131a3d3e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d64eb22891afd4b92c9d7e889c3d950895c99bf2916c786f61feef6d58f6860f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:828073b9004ecc533e43897ddd0fb845feeba262c48832cdd3083fa2822229e7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a78e8078414d4b8e9496d7f1986a6ac6a9a648b5e561415b563bc1827d870ffe_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:bcd4821d104293600d92ec3efb0967baa2e396f8a192e6b70918a5d0f5fa0272_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ee1e0eb1be6a39cfb2e6a7a3597f3ab4d3ce99c837b0a7f7b85d3fa8fa88a040_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:3c7242b0b822a2aadffd9906478f01608b538f673900163a60fcfa086d375906_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:6df1c2bf8515d1af6afdf92ce3b2eee4505b0adede1d4f9de42a461c294c3af7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:2ce01e19a15a61c01b73284263ccbb0f58f8f08dc8322c61ab3ce99af6436b19_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:7329a64e3ad7c0661c610ba516a1f02bd0f988dbd0ac552d7c60f90a2bafd5e2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:78ac87a45b3ecd7f7f11af6aaf9f0e6b043c4e1b9046a3e8486a70db2d5f63ee_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc11528e117a3437e92608eb9c4ece51ecab1851ef976365e11c3a48cba04d4e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f0caad7678dc21d891d18b0ce27e5b08e103f4e1196b8f0bd09dfd5f3aefafd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0c909d66cbf969cbe11968a07bc45b88ceaf48318eda1383078eae246555c3af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:69be0035bd4d768e9cc677b22ee92987edbc82864153836c52aee7d172c7db25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:714de7953e67ca5939f7f29b6646f808411b6aa19c67bb71c83bfde43ec6a135_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e403974b7d6c6cd723f5e743acca6f69d9827ee10112b1104e2b41c6ebcf2840_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:43e8b775d57b784cda9d69d68d6035e28e2459c3d29b8ce1a518c80aff640d70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5d2f312f0a4fd8db4299d3c213d8bfa9281ec7d5373b96490d08cb539b7eff9e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:6a47fe76b8434cdc85523de45f6d224f081e3faf8d3a5cb25350c01e8ec9d1d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f9790d3b627750498a64c219eaf80fd45687f06de957d61447cd7ce6f407d579_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1afa425a522b662e832d1aabef58887bdd7c0a7fec00a2fc2dbd733ce49e3d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9670c21a8590d404178fc4eeaabef6a92fa6547257dd0f8f262eba896ead289f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:bcdfcc44aa3a4e76a8f370e653c87501146b39fbfb1682875e1378b26377571a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:fb6b0d958637a1b1293654f6fb771e375eba628f49d069b6b23a8655ee822207_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:232d37bdd66d0a677a72df50998deada932096a2cf4850c0101837c47967dcaa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:384add612089ea21ef5a1ea14615f26663f57b23a74c1909165676b1fcb320a0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8566d93798ea66d637eab1872a29f29753f5779785e0c9c63c9ec1ddbbbfb231_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:c66f2c708f32dda47f1f7cc9a1ea7dc97bc589265df73e589df2fe6693c7e09d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0067b843e3534040ef7620715c2f86bb141882cc32df577438aaa321f5141596_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:077318abc98d9cb1cf5e3888f10542895758badf63b7d1857e90d8fb260e10b8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b47b354cdd0b1046cc2ca7195520fe9929d25a258cacd4ddbda0394f030cf0ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:d28bcbdb922e937509f26720ffbbce9cc9df5e2a2cd2f7d5ce4f26ffdc235b61_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:23bd9724dd89ad3b955d02ee7c181ed2323dc517f62642d37171e84f7584c796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:3f1915177c59c6d5d1956df6208425c3595bb5fb6911cb9b4ffafaf84f6617fa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:c1b4b52f442b0e953bb147f91e66b6f8c9341d7517394bce17b785fd5711624b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbbcc6e31faaa1ef83e15354f0be0ed2c8f078e6ffed2eb4456bdbab1704b480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:74795f21968adbcaeeaae9e6a8b072d80749cb8bb38e93161f3b0e7badf2eb15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:d9800e6b0161cd0517644746a5aa3381da7ef489405103d47e8cbb23cfcdb64c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:64beb43b5d803f1c72e6bf3e93cb080510cef99d97ae4ba97c1b2ed5373a3b9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:90c1b58b7b81275f3e21c2b434927c09d35850058d155faa640c4887c29a2ce0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:1379072258e060afea437e8e868ef778261f9200e33ac50a71cee158f1966e04_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:54cdbf92d06b09fa96db2ddc700943bc06e350b04b11ce6bb2efd2d01be69724_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b9db0faf0afd5c15574a634b7471267f8a91e1d7a75d02f757a42f527c0daaeb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:cf5adcbc1c3723265dbd4bd5ca32068fdec7d646e1f29cf89d1dd421174b1e61_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1da397c213c1aabee4f18456a10bc135248c4c19a46238fdbf7125ad099c6bed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:434c1f8becea09b3c603c7add8f6364e7407b6938fd2075cbc54bf759197567f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:6c2483950c50e5e6b7301cb63dae09e7aa2fbc2289375a14338b3f4bb3850957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:15a7e0076980f322a7272c25a00f0bf6ce6fdb31e34f687318844f90a9cc8f79_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:560dca12fdb11f4705c523bf35f13cf4a13bb61ebb6aa67d6f6ee888803089a5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9449c57185bc815790209a3b6650386563c2bed58eb957030a0bf4a8f53ecd35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0805130b18b579ff8aff2adc253432a21c24b1bce49da0fef56009e538c0cc8e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:22dac221d0a23556fe7f38b773a3ebb68725a0c1533baf0c940984fe3fd6de69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d023969beb12068dd65f468b87c20911a657733001caf3a7e052b44889676fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9b59421d9efba7c9ed2d1e226f2a60e36f953865dc3ecfc7a1754170b629653e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:59e476792f09ae69ceb0e4d40120ba6366d141dbbd009ffeb0d592afd27b6edd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:962daa988f75b92b553df53e771061206a8366b466bdb3af4a51007825846326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e168693e564b59ca886bd8c263b8e909691dfccdbde3087287c2489ce1e0573a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f18239411b6923cdda7a734a128448837eaf66661999b756178f8471f838f4e1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:06011801321cc34664abc8ed7ade2cf2e1ac96c0753966850e151cab815d61f8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:940697a45ac27b5d78042e8b65edd9b1a85ffba4c79efc2fdd722c92f9c77229_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:eab89e17049e0934a063324cfbc1dcb0c412ef7d9c80fcab35b9c2c9fbeab900_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4d1d53fcf2bbb9273a5a1711f5f1f6b76dedb89a50bff6c2e78fff2b9b91347_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:87436f44eeb0025b95161692eecca9a368d966dadf2a45ec1c4732ff57127b6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:afc5b3f42b796f5993c25272567fda748e5baf98d17d0bef25edee8bbe92287b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:c1ebd5f8cbc416b320e898a4cc49ad9b0ad4adb2dabc126210819e13f573cc9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ec2baac60b28249a0e5b0697abdb0e94b20571a344fd3dcc225c8c17fff2d1e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:17f2eb80baeccc29ffb82d2da9bb0ed485fbab02def7d9cd436e44544b8d1b3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:84d5473750a2292d7d5acaad3e02a4febd81adf9eab9d92126c9abcdebc535a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:9a7eabe2ee2b28e0121355ef1a9f5632fe97820b6c7f772a6cfdb7e595ca9fd1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:db7f4278a3c8f8d959c25ff947164b1932515afd47533b867517568d9c37c08d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5e59cd9305ae7cee8192800f6c58501ea58ab8878ce335a16ad2e2f4ef39198e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:74eda243b616e1eb074fa91121315d69c0c27a20155c3988dfd2a875e3267511_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bc9b3404f83830558f0173c9631252fd5c3ad64eb1e50c3970504c38a9676f57_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7a9e7c2cc70f1539130cb7be4fec0aa2e575ac02fb76f19fe8c1f9c28688bfd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3a3c1715f3c6f0f770ac9e7f3ae798a72cd0f76acd78b6e6edfe313eb6166302_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4e7f03c301e6642913fe4d5c5d50856597401c04f8fe7233d64dbcd83db1fda0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9c8cd5266a91bbc3f1959ddb336447bce41d8bdbb3e8822991c1144677eccc27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:77b0afcd82f34e5dc2d953129d3a506425ad61b7366c12dc4f18b83dd8b41f81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:9c188f543cfb5ba855f78e7c3cb47574c9a455bfe39eda5cb56c776b702f55a9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c11e34afa310b5486e5808ec20bd1961bd787722e73751f503d215c41486f565_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:48e4ef50e863ce50a53b98cd15f9ffb5d470737458e5671a88a256117961f927_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8af50941ea73163e9ed77af1f502645340ffe54b7a0d26a67f09ec0b208a03f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:da744e1b9c83b3e975d9f01df280bf7b2f0e133ca1640efb9b41fd7009728394_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e0d986c7d8c7482c972852f2133073968caf42be5eb3edf8f42e97c2fa56f130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:45b531f3efacc195ff0d0b2d5e5171f06ddd75a4e026e531b96c709211efd67b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6db2aef1b0a8bf3146cf0f7d89a5d738413b9debfad8eb9f313635545270c94f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:75f9ca90baa675997cbd5953c14ded1c23eb139cd151ac27cb00b22d03615a80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:e86b8dffe071e2f753cc22e23fc915b6b40377058239713624690a558bd26f9a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3e55c715a6fbefc517fb6eae06f87102b83fae8fe1ad9d96d5d04e38a02d66a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:85017f2a631cfe3f97cf7e2694263a38fa8109de3715294deb7e121e4ab5876a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:94c8ae1dee20291dabc8cecc118715ff70e2a53b07a68941c4cc4f6b7cbbbb1c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c7279fa6b42fa9d28899b40f792348ac9556498d7234390e8e670bb08f0ebbbb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:3308be644c1141b2fba332c54010895e6a5fc89380a82b6efde7eba60a9fe3ff_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:41fbd90510f63a248acbe9297418a9b893401253142574a0ce88020a1917d803_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:93ed837d6007af5eeb9ca82e602224152371c24e0319c101f527289c1bbb681f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:aef66c166327b5f36e4bc582a0e66b71959ba5de42cb5ed8e90a59918bd4c333_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:03275f8d2facfb8a8b9c07155f360bda87dc3af926773cbed48f7d365ec27230_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:222d1bddfbcb6216deb3c5f5c1aeded914971bc22eab2c239556428ac06fcbca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:79ebee557f78d1add6c4c1e2e7fd15ce60fda4f65041531ab08938cfd8944daf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ff0f47fb3e958723316472ace7c4a72f1c227c6d8153dfa78ca79e23340a8c06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4bc9df05bfe5ae9a9116e8f72615430c2d6c4867a8ad91d38985e1bc302cd80a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:8e7ef7f1efb549b8ab1dac339791f83547414a236b172109cd30c904b1473a54_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eb84041ea587478609a81e7c1b6abf670639f60a774a7ab251d542e651c7656b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:463a2fab3c70eae99121cfc80c80027ca13c8828d5a1e3ac2b1f1de9c40badca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b4690ecace753cadab32d74668df5e756d11b8da467bbbae933526c81ac81f34_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ee55912d267ab7c311d4101595ccaad47e784817770c005bf9f5477a89d0d55d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b5258b2a5e08e569c470f773da7f74c633aaff7a9926a10b06760f9787671437_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bb3ab2a93c349706bf0dff12a6b03064f6a430981ed20b7aa9699d43c42448d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:bdd4c3ab9653b334f47fa28403c4d128bd326a5b146ae1f557c0d1f06507afe8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:08c844ef4eca84bcf942c71ed9f38dfc14e6aec2aca5b59ea2467884bb0f6f84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:eed5fe568e1dd38b1b505ea55b0eaa0790d31b786dca53126e5bb1c14d8d9dd7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:f3fc38775494bc8fe1ee169d7e64dba1c45b568ca113533958ae7069ca6860f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1c78dba08c0f0e82fc69879b071830c9c708c34797b61c08f022dbb52da16f26_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1f16a4f225c1cee7fbe62adf842acd4bf32837fb7afb349495db3fe20cd29eee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:49474d2b155e1d4ba1348057782fa1aa2b9ba8f3445fb676906e77cca0819c74_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:32d7b17e180b15303e3d8c24c26d57f696f4919b1f52db41f75496f50313f827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7873b2ead186c67c7b2a70e9e9b3fd541be084178183f72ed2d17941e7bc6563_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:aaeb86a52d1566aa0fa1f1bf4015b523d408df6f29de713e341827ee8f7e03dc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:5b921253da6415ddd642f609bdfd853312670009a0b872be4177ef6b7dfbf806_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:9badc32a1c716aa2b6e9fe17650e056760d0faa09473f28bad9467cf2ee959f5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:ce27bcfb5039720f2eaabb27f03a56570ed625c57918ae8bbbe4a6c690db60d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:d87a69baa2a829dfb7e873f1e16b31a06a4f16fc6244223a4f039c5b178da636_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:56b4a7380e482f5e3fb10e35c71a1b0605b651a4c8800242dec5f1281b08a38b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f2c5fa540a38374d12557f71a8066117b1add90f09f9ab5006358b8ec2a320a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8c3b870517808dcc62446f38034ab67d4deea71d2c9cd3603213288c21416a80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:e4205c8134c7aa9362ff080311507c6e389b82dacf4e06e10461f3fb0a5d269f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0a30460d80b62c7b697065860ddcb0348a37d561bc214d9490e772c040e788f1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:716a31cfce7060cb79a691722fdb10da8831a46e2cc12e6d55cc82f1dac9c8b2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:a5d18bc400edf4ddb0207d452586f3b64401ffa16656b2fdfb154957fdde67c1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fa5c6a0aa135900589ea639ad9897956ac6f721970a26127bbce4e4fc84edf3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:396b0f93db6fa85619126d34a944920fb6782802caeb6bc86af05a27d5db3d47_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d7c1befcbf81ed2230fcd85cb52d4976e8942c965c81f9af169cd2fe5d05ebb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a32bec403165b14098cafc45326a9839205bfe25b7dd2b41efc04bca401fc569_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:bbe95f1191b2aa81c68cdc4c3124ae72259c02f739593fa531f9babb62879948_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2b2a3da712bef30d9bd5a591dc65d7619466b67d4d45b030839d4239b0c52c9a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:abd2abaa015db574e7ac72a08975353ff708d7c31a57c4ec67198dd461560a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:b8e069ab6b0b27f717092182dd3c81b5ece705e655583fcd9d69bafecc3c2690_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c47ab7dcb3b9fdb023b27426e672c30286fc68e9372578e2121f1a9a1543b53e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:06e88884fc4818f69672be37c5cad35dbb734ba6f5fcc522dc44216f172db9b0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:138af2ae85d50413a56842f9b76b3416f5effcb9c0d8fba0d056d1d3e41bc0c6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:414a8a46931dc1505d21ef47a0ef75bf90fcd2e5c0c93428a852789730260e54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1b3cbf6fd6751f31215f6ab3b15b6d97a5cb0be42aaa48cbf4cb788bac7b7c43_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:c71f53b45a976d599b5633bee8fa979fcece81f0c422f4bf65b5293ef4c5cba7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:fa4f56861c26d2885c5ce571d0277a1a9fa527562a31084439a436a745b07dce_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.